commit eba8d8f39532d0c196f0c8a21379c080082655ee Author: Wataru Otsubo Date: Thu Sep 12 20:26:38 2024 +0900 new: create tables & add campaigns, runs, ps_boards, single run results - currently, test automatically opens sqlitebrowser - ext package is not well checked diff --git a/.JuliaFormatter.toml b/.JuliaFormatter.toml new file mode 100644 index 0000000..df4710a --- /dev/null +++ b/.JuliaFormatter.toml @@ -0,0 +1,13 @@ +# See https://domluna.github.io/JuliaFormatter.jl/stable/ for a list of options +whitespace_ops_in_indices = true +remove_extra_newlines = true +always_for_in = true +whitespace_typedefs = true +normalize_line_endings = "unix" +# format_docstrings = true +# format_markdown = true +align_assignment = true +align_struct_field = true +align_conditional = true +align_pair_arrow = true +align_matrix = true diff --git a/Project.toml b/Project.toml new file mode 100644 index 0000000..6fffe8f --- /dev/null +++ b/Project.toml @@ -0,0 +1,24 @@ +name = "PSBoardDataBase" +uuid = "779f6a9c-59fa-41f1-8ed1-e9a91eccb2f5" +authors = ["qwjyh "] +version = "0.1.0" + +[deps] +CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b" +DBInterface = "a10d1c49-ce27-4219-8d33-6db1a4562965" +DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0" +Dates = "ade2ca70-3891-5945-98fb-dc099432e06a" +SQLite = "0aa819cd-b072-5ff4-a722-6bc24af294d9" +Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c" + +[weakdeps] +InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240" + +[extensions] +PSBoardDataBaseInteractiveUtilsExt = "InteractiveUtils" + +[extras] +Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" + +[targets] +test = ["Test"] diff --git a/ext/PSBoardDataBaseInteractiveUtilsExt.jl b/ext/PSBoardDataBaseInteractiveUtilsExt.jl new file mode 100644 index 0000000..210d0d6 --- /dev/null +++ b/ext/PSBoardDataBaseInteractiveUtilsExt.jl @@ -0,0 +1,24 @@ +module PSBoardDataBaseInteractiveUtilsExt + +export import_dataframe + +using PSBoardDataBase +using CSV +using DataFrames +using InteractiveUtils + +""" + import_dataframe() -> DataFrame + +Import dataframe from clipboard. +""" +function import_dataframe() + file = tempname() + finalizer(file) do x + @async rm(x) + end + + CSV.read(file, DataFrame) +end + +end # module diff --git a/src/PSBoardDataBase.jl b/src/PSBoardDataBase.jl new file mode 100644 index 0000000..d54c785 --- /dev/null +++ b/src/PSBoardDataBase.jl @@ -0,0 +1,15 @@ +module PSBoardDataBase + +using SQLite +using DBInterface +using Tables +using DataFrames +using Dates + +include("create_table.jl") + +include("import_data.jl") + +greet() = print("Hello World!") + +end # module PSBoardDataBase diff --git a/src/create_table.jl b/src/create_table.jl new file mode 100644 index 0000000..4e94176 --- /dev/null +++ b/src/create_table.jl @@ -0,0 +1,22 @@ +""" + create_database(dbpath::AbstractString) + +Create new database at `dbpath` and prepare all tables. +""" +function create_database(dbpath::AbstractString) + db::SQLite.DB = DBInterface.connect(SQLite.DB, dbpath) + + create_database(db) +end + +function create_database(db::SQLite.DB) + dirpath = @__DIR__ + sql_creates::String = read("$dirpath/sql/create_table.sql", String) |> chomp + + delim = "CREATE " + for sql_create in eachsplit(sql_creates, delim, keepempty = false) + stmt = DBInterface.prepare(db, delim * sql_create) + DBInterface.execute(stmt) + end + db +end diff --git a/src/import_data.jl b/src/import_data.jl new file mode 100644 index 0000000..62b0d01 --- /dev/null +++ b/src/import_data.jl @@ -0,0 +1,278 @@ +function insert_qaqc_campaign_id(db::SQLite.DB) + campaigns = [1, 2, 3] + stmt = DBInterface.prepare(db, sql"INSERT INTO qaqc_campaigns VALUES (:id, :note)") + DBInterface.executemany(stmt, (id = campaigns, note = fill(nothing, size(campaigns)))) + + nothing +end + +function insert_qaqc_positions(db::SQLite.DB) + stmt = DBInterface.prepare( + db, + sql""" + INSERT INTO qaqc_positions + VALUES( + :id, + :name, + :station, + :position + ) + """, + ) + DBInterface.executemany( + stmt, + ( + id = 1:18, + name = ["B-$i-$j" for i in 0:1 for j in 1:9], + station = [fill(0, 9); fill(1, 9)], + position = [collect(1:9); collect(1:9)], + ), + ) + + nothing +end + +""" +Common preprocess(format) function for single result table. +""" +function prepare_single_result_df(single_result_table::DataFrame) + df = copy(single_result_table, copycols = true) + + # timestamp format: 2024-08-07T06:18:09Z + # ignore the last 'Z' => [1:end-1] + transform!( + df, + :timestamp => + ByRow(s -> ismissing(s) ? missing : DateTime(s[1:(end - 1)])) => :timestamp, + ) + + return df +end + +""" +Common preprocess(format) function for runlist table. +""" +function prepare_runlist_df(runlist_table::DataFrame) + df = copy(runlist_table, copycols = true) +end + +""" +Add PS Board IDs from single test result table. +""" +function add_psboard_ids(db::SQLite.DB, single_result_table::DataFrame) + df = combine(groupby(single_result_table, :motherboard_id)) do df + if df.daughterboard |> unique |> length |> ==(1) + return (daughterboard = df.daughterboard |> first,) + end + df = sort(df, :timestamp) + dropmissing!(df, :daughterboard) + return (daughterboard = df.daughterboard |> last,) + end + filter!(:motherboard_id => !=(999999), df) + + stmt = DBInterface.prepare( + db, + sql"INSERT INTO ps_boards VALUES (:psbid, :daughterboardid)", + ) + DBInterface.executemany( + stmt, + (psbid = df.motherboard_id, daughterboardid = df.daughterboard), + ) + + nothing +end + +function add_qaqc_runlist(db::SQLite.DB, runlist_table::DataFrame) + stmt_insert_runid = DBInterface.prepare( + db, + sql""" + INSERT INTO qaqc_runs + VALUES (:runid, :campaign_id, :run_datetime, :note, :shifter, :logfile, :shiftscript_ver) + """, + ) + runlist_table = dropmissing(runlist_table, Symbol("Run ID")) + @assert allunique(runlist_table, Symbol("Run ID")) + for row in eachrow(runlist_table) + try + DBInterface.execute( + stmt_insert_runid, + ( + runid = row.var"Run ID", + campaign_id = row.var"Campaign ID", + run_datetime = nothing, + note = row.comment, + shifter = row.var"Shifter name", + logfile = nothing, + shiftscript_ver = nothing, + ), + ) + catch e + @error "error in putting run list" e + @info "row" row + end + end + nothing +end + +function add_qaqc_single_result( + db::SQLite.DB, + single_result_table::DataFrame, + runlist_table::DataFrame, +) + position_id_map = + ["B-$i-$j" for i in 0:1 for j in 1:9] |> enumerate .|> (x -> begin + (i, s) = x + s => i + end) |> Dict + + stmt_search_runid = DBInterface.prepare( + db, + sql""" + SELECT id + FROM qaqc_runs + WHERE id = :runid + """, + ) + stmt_insert_runid = DBInterface.prepare( + db, + sql""" + INSERT INTO qaqc_runs + VALUES (:runid, :campaign_id, :run_datetime, :note, :shifter, :logfile, :shiftscript_ver) + """, + ) + stmt_update_runid = DBInterface.prepare( + db, + sql""" + UPDATE qaqc_runs + SET run_datetime = :run_datetime, shifter = :shifter, logfile = :logfile, shiftscript_ver = :shiftscript_ver + WHERE id = :runid + """, + ) + stmt_insert_result = DBInterface.prepare( + db, + sql""" + INSERT INTO + qaqc_single_run_results( + runid, + psboard_id, + daughterboard_id, + position, + resistance_test_passed, + qspip, + recov, + power, + clock, + asdtp, + reset, + qaqc_result + ) + VALUES ( + :runid, + :psboard_id, + :daughterboard_id, + :position, + :resistance_test_passed, + :qspip, + :recov, + :power, + :clock, + :asdtp, + :reset, + :qaqc_result + ) + """, + ) + + for row in eachrow(single_result_table) + if ismissing(row.runid) + @assert contains("resistance")(row.comment) || contains("CN15")(row.comment) "Unexpected row with id $(row.motherboard_id) $(row.comment)" + + # DBInterface.execute( + # stmt_insert_result, + # ( + # runid = row.runid, + # psboard_id = row.motherboard_id, + # daughterboard_id = row.daughterboard, + # position = nothing, + # resistance_test_passed = false, + # qspip = nothing, + # recov = nothing, + # power = nothing, + # clock = nothing, + # asdtp = nothing, + # reset = nothing, + # qaqc_result = nothing, + # ), + # ) + # TODO: maybe these should not be in this table... + continue + end + + # Add run if it's not in `qaqc_runs` table + # or update info on the run (such as datetime) + if DBInterface.execute(stmt_search_runid, (; runid = row.runid)) |> isempty + campaign_id = if row.runid < 63 + 1 + elseif row.runid < 98 + 2 + else + 3 + end + comment = let + row_run = filter( + Symbol("Run ID") => x -> !ismissing(x) && x == row.runid, + runlist_table, + ) + if !isempty(row_run) + row_run.comment + else + "" + end + end + + DBInterface.execute( + stmt_insert_runid, + ( + runid = row.runid, + campaign_id = campaign_id, + run_datetime = row.timestamp, + note = comment, + shifter = row.shifter, + logfile = row.qaqc_log_file, + shiftscript_ver = row.shiftscript_ver, + ), + ) + else + DBInterface.execute( + stmt_update_runid, + ( + runid = row.runid, + run_datetime = row.timestamp, + shifter = row.shifter, + logfile = row.qaqc_log_file, + shiftscript_ver = row.shiftscript_ver, + ), + ) + end + + DBInterface.execute( + stmt_insert_result, + ( + runid = row.runid, + psboard_id = row.motherboard_id, + daughterboard_id = row.daughterboard, + position = position_id_map[row.position], + resistance_test_passed = true, + qspip = row.qspip, + recov = row.recov, + power = row.power, + clock = row.clock, + asdtp = row.asdtp, + reset = row.reset, + qaqc_result = row.qaqc_result, + ), + ) + end + + nothing +end diff --git a/src/sql/create_table.sql b/src/sql/create_table.sql new file mode 100644 index 0000000..9971e73 --- /dev/null +++ b/src/sql/create_table.sql @@ -0,0 +1,98 @@ +CREATE TABLE ps_boards ( + id INTEGER NOT NULL PRIMARY KEY, + daughterboard_id INTEGER +); + +CREATE TABLE qaqc_single_run_results ( + id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, + runid INTEGER NOT NULL, + psboard_id INTEGER NOT NULL, + daughterboard_id INTEGER, + position INTEGER, + resistance_test_passed BOOLEAN NOT NULL, + qspip INTEGER, + recov INTEGER, + power INTEGER, + clock INTEGER, + asdtp INTEGER, + reset INTEGER, + qaqc_result INTEGER, + FOREIGN KEY("runid") REFERENCES "qaqc_runs"("id"), + FOREIGN KEY("psboard_id") REFERENCES "ps_boards"("id"), + FOREIGN KEY("position") REFERENCES "qaqc_positions"("id") +); + +CREATE TABLE qaqc_runs ( + id INTEGER NOT NULL PRIMARY KEY, + campaign_id INTEGER, + run_datetime DATETIME, + note TEXT, + shifter TEXT NOT NULL, + logfile TEXT, + shiftscript_ver TEXT, + FOREIGN KEY("campaign_id") REFERENCES "qaqc_campaigns"("id") +); + +CREATE TABLE qaqc_dispatch ( + id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, + qaqc_campaign_id INTEGER, + psb_id INTEGER, + source_place TEXT NOT NULL, + destination TEXT NOT NULL, + time DATETIME, + FOREIGN KEY("qaqc_campaign_id") REFERENCES "qaqc_campaigns"("id") +); + +CREATE TABLE qaqc_campaigns ( + id INTEGER NOT NULL PRIMARY KEY, + note TEXT +); + +CREATE TABLE qaqc_resistance_check ( + id INTEGER NOT NULL PRIMARY KEY, + psb_id INTEGER NOT NULL, + passed BOOLEAN, + FOREIGN KEY("psb_id") REFERENCES "ps_boards"("id") +); + +CREATE TABLE qaqc_extra_run_results ( + id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, + runid INTEGER, + psboard_id INTEGER NOT NULL, + position INTEGER, + FOREIGN KEY("runid") REFERENCES "qaqc_runs"("id"), + FOREIGN KEY("psboard_id") REFERENCES "ps_boards"("id"), + FOREIGN KEY("position") REFERENCES "qaqc_positions"("id") +); + +CREATE TABLE qaqc_positions ( + id INTEGER NOT NULL PRIMARY KEY, + name TEXT NOT NULL UNIQUE, + station INTEGER NOT NULL, + position INTEGER NOT NULL +); + +CREATE VIEW qaqc_single_run_table +AS + SELECT + qaqc_single_run_results.psboard_id, + qaqc_single_run_results.daughterboard_id, + qaqc_positions.name, + qaqc_single_run_results.runid, + qaqc_runs.run_datetime, + qaqc_runs.shiftscript_ver, + qaqc_runs.shifter, + qaqc_single_run_results.qspip, + qaqc_single_run_results.recov, + qaqc_single_run_results.power, + qaqc_single_run_results.clock, + qaqc_single_run_results.asdtp, + qaqc_single_run_results.reset, + qaqc_single_run_results.qaqc_result + FROM + qaqc_single_run_results, + qaqc_positions, + qaqc_runs + WHERE + qaqc_positions.id = qaqc_single_run_results.position AND + qaqc_runs.id = qaqc_single_run_results.runid diff --git a/test/input/PS board QAQC Data Base - RUNLIST.csv b/test/input/PS board QAQC Data Base - RUNLIST.csv new file mode 100644 index 0000000..9c4ae68 --- /dev/null +++ b/test/input/PS board QAQC Data Base - RUNLIST.csv @@ -0,0 +1,87 @@ +Campaign ID,Run ID,Shifter name,is standard run,comment +1,38,Izumiyama,TRUE,Station1 が開始10分くらいで落ちた。 +1,39,Izumiyama,TRUE,Run 38 後に station1 系統を再起動して、1回試験を再度試した +1,40,Izumiyama,TRUE,Run 39 の long run +1,51,Hashimoto,FALSE,Only Clock試験を実施 +1,55,Otsubo,FALSE,PSBoardの電源を入れていなかった。Efficiency 99%のステーション/JATHub依存性を調べるために、まず問題の再現を100回試験で試す。 +1,56,Otsubo,FALSE,Efficiency 99%のステーション/JATHub依存性を調べるために、まず問題の再現を100回試験で試す。 +1,57,Otsubo,FALSE,問題が再現され、特定のASICのチャンネルで問題が見られることから、シグナルケーブルを上下でスワップして再度走らせる。 +1,58,Sube,FALSE,PS000206でauto_reconfigが1にならないため、SDを再度培養して1回試験を走らせる。 +1,59,Sube,FALSE,PS000206でauto_reconfigが1になることを確かめられたため、再度100回試験を走らせたが、途中で停電のため停止。 +1,60,Sube,FALSE,PSB電源入れ忘れのためストップ +1,61,Sube,FALSE,PSBIDミスのため、試験開始前にストップ +1,62,Sube,FALSE,"停電復旧後、PS000206,PS000076,PS000221,PS000135で試験" +2,66,hashimoto,TRUE,QA/QC第1弾でFirmwareだけ書いていた新規ボードのソフトウェア試験と、ASDスワップ試験 +2,67,hashimoto,TRUE,QA/QC第1弾でFirmwareだけ書いていた新規ボードのソフトウェア試験と、ASDスワップ試験のlong run +2,68,sue,TRUE,ソフトウェアリセット修正版のFirmware試験(2024_7_31.svf) +2,69,sue,TRUE,ソフトウェアリセット修正版のFirmware試験(2024_7_31.svf)のlong run +2,70,kondo,TRUE,"ソフトウェアリセット修正版のFirmwareだとLockがかからないので、 +元のFirmware(2024_7_23.svf)に戻したlong run" +2,71,sube,TRUE,"ソフトウェアリセット修正版のFirmwareだとLockがかからないので、 +元のFirmware(2024_7_23.svf)に戻した1回試験。以降は、2024_7_23.svfで実施" +2,72,sube,TRUE,通常の1回試験 +2,73,sube,TRUE,Run ID 73後の通常の100回試験 +2,74,sube,TRUE,B-0-8でSFP入れ間違い +2,75,sube,TRUE,通常の1回試験 +2,76,sube,TRUE,Run ID 75後の通常の100回試験 +2,77,hashimoto,TRUE,ミス +2,78,hashimoto,TRUE,通常の1回試験 +2,79,hashimoto,TRUE,ミス +2,80,hashimoto,TRUE,Run ID 78後の通常の100回試験 +2,81,sube,TRUE,通常の1回試験 +2,82,sube,TRUE,Run ID 81後の通常の1回試験 +2,83,kondo,TRUE,通常の1回試験 +2,84,kondo,TRUE,Run ID 83後の通常の1回試験 +2,85,makita,TRUE,通常の1回試験 +2,86,makita,TRUE,RUN ID 85後の通常の100回試験 +2,87,makita,TRUE,通常の1回試験 +2,88,makita,TRUE,RUN ID 87後の通常の100回試験 +2,89,Kondo,FALSE,"B-0-3, B-1-3, B-0-2, B-1-2はDAC=0のみ。B-0-7, B-1-7, B-0-9はinvalid register valueのみ。" +2,90,Sube,FALSE,89のlong run +2,91,hashimoto,FALSE,ミス +2,92,hashimoto,FALSE,ミス +2,93,Sube,FALSE,90のASD swap (B-0-7でPP1-4と5-8をswap) +2,94,Kondo,FALSE,追試(1回試験) +2,95,Kondo,FALSE,追試(100回試験) +2,96,Kondo,FALSE,PSB198のメザニンをNo.998→No.86に載せ替え +2,,Hashimoto,FALSE,いろんな追試ボード試験: 1回 +2,97,Hashimoto,FALSE,いろんな追試ボード試験: 10000回 +3,98,otsubo,,通常の1回試験 のつもりがSDカード(B-0-8)のパーティションテーブルが読めなくなりスレーブのlogが消えた→後に復旧し、log抽出済み +3,99,otsubo,,通常の100回試験 のつもりが10000回試験になっていて、途中で止めた。240回ほど回した のつもりがSDカード(B-0-8)のパーティションテーブルが読めなくなりスレーブのlogが消えた→後に復旧し、log抽出済み +3,100,tagami,,通常の1回試験 +3,101,tagami,,ミス +3,102,tagami,,通常の100回試験 +3,103,tagami,,通常の1回試験 +3,104,tagami,,通常の100回試験 +3,105,tagami,,通常の1回試験 +3,106,tagami,,通常の100回試験 +3,107,tagami,,通常の1回試験 +3,108,tagami,,通常の100回試験 +3,109,makita,,ミス +3,110,makita,,B1-1のGNDをきちんと接続した(PSBIDはB1-1以外てきとう) +3,111,makita,,CP11とCP12をスワップ(PSBIDはB1-1以外てきとう) +3,112,makita,,ASDをB1-1であまっていたASDと交換→直った! +3,113,makita,,ASDのスワップを元に戻して検証(差し直しor悪いASDがいるを切り分け)→直った。差し直しで改善はするが差し直しごとに悪くなりがちなやつがいる。このASDの組はつかわないようにする。ラベルしておいた +3,114,makita,,ミス +3,115,makita,,ASDを改善して再度108の100回試験を行う +3,116,tagami,,通常の1回試験 のはずがB-1-7が試験開始しないバグ発生、やり直し +3,117,tagami,,通常の1回試験(station 1 JatHubのパワーサイクル、B-1-7のリカバリーLED確認) +3,118,tagami,,通常の100回試験 +3,119,tagami,,ミス +3,120,tagami,,通常の1回試験 +3,121,tagami,,通常の100回試験 +3,122,kmaki,,通常の1回試験 +3,123,kmaki,,ミス +3,124,kamki,,通常の100回試験 +3,125,tagami,,ミス +3,126,tagami,,通常の1回試験 +3,127,tagami,,通常の100回試験 +3,128,tagami,,通常の1回試験 +3,129,tagami,,通常の100回試験 +3,130,mizuochi,,通常の1回試験 +3,131,mizuochi,,通常の100回試験 +3,132,tagami,,1回試験追試。メザニン交換5台+clock test fail+power fail+健康なもの×3 +3,133,tagami,,100回試験追試。メザニン交換5台+clock test fail+power fail+健康なもの×3 +3,134,mizuochi,,ミス +3,135,tagami,,clock skew測定用試験 B-0-1 +3,136,mizuochi,,clock skew測定用試験 B-1-1 \ No newline at end of file diff --git a/test/input/PS board QAQC Data Base - 本番1回試験・追加検証試験.csv b/test/input/PS board QAQC Data Base - 本番1回試験・追加検証試験.csv new file mode 100644 index 0000000..74c3112 --- /dev/null +++ b/test/input/PS board QAQC Data Base - 本番1回試験・追加検証試験.csv @@ -0,0 +1,614 @@ +motherboard_id,daughterboard,position,qspip,recov,power,clock,asdtp,reset,qaqc_result,lvds_tx_skew,runid,timestamp,qaqc_log_file,shiftscript_ver,shifter,firmware_ver,parameter_ver,fpga_dna,retest,comment, +102,1572,,,,,,,,,,,,,,Yamaguchi,,,,TRUE,abnormal resistance (mother board), +100,1574,,,,,,,,,,,,,,Yamaguchi,,,,TRUE,abnormal resistance (mother board), +76,48,B-1-9,1,1,1,1,1,0,1,,24,2024-07-24T04:18:46Z,24.log,0.2.0,hashimoto,PS_firmware_top_2024_7_23.svf,,,TRUE,"BCID fail, BCID shift, BCID failは1回, PP ASIC 2のPLLLDが0なのにreset counterが0が1回, PPconfig_doneが立っていないが1回", +75,54,B-0-9,1,1,1,1,2,0,2,,24,2024-07-24T04:18:46Z,24.log,0.2.0,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,always_hit_flag が立つが1回, +74,52,B-1-8,1,1,2,1,1,0,2,,24,2024-07-24T04:18:46Z,24.log,0.2.0,hashimoto,PS_firmware_top_2024_7_23.svf,,,TRUE,DAC read = 0, +73,45,B-0-8,1,1,1,1,1,0,1,,24,2024-07-24T04:18:46Z,24.log,0.2.0,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +68,59,B-1-7,1,1,1,1,1,0,1,,24,2024-07-24T04:18:46Z,24.log,0.2.0,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +67,44,B-0-7,1,1,1,1,1,1,1,,24,2024-07-24T04:18:46Z,24.log,0.2.0,hashimoto,PS_firmware_top_2024_7_23.svf,,,TRUE,PP ASIC 3でhit efficiencyが99%が29回, +66,55,B-1-6,1,1,1,1,1,0,1,,24,2024-07-24T04:18:46Z,24.log,0.2.0,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,PLLLDが0なのにreset counterが0が1回, +65,53,B-0-6,1,1,1,1,1,0,1,,24,2024-07-24T04:18:46Z,24.log,0.2.0,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +60,42,B-1-5,1,1,1,1,1,6,1,,24,2024-07-24T04:18:46Z,24.log,0.2.0,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,PPconfig_doneが 立っていないが1回, +59,61,B-0-5,1,1,1,1,1,0,1,,24,2024-07-24T04:18:46Z,24.log,0.2.0,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,PPconfig_doneが 立っていないが1回, +58,40,B-1-4,1,1,1,1,1,0,1,,24,2024-07-24T04:18:46Z,24.log,0.2.0,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +57,58,B-0-4,1,1,1,1,1,0,1,,24,2024-07-24T04:18:46Z,24.log,0.2.0,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +52,60,B-1-3,1,1,1,1,1,0,1,,24,2024-07-24T04:18:46Z,24.log,0.2.0,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,PPconfig_doneが 立っていないが1回, +51,50,B-0-3,1,1,1,1,1,7,1,,24,2024-07-24T04:18:46Z,24.log,0.2.0,hashimoto,PS_firmware_top_2024_7_23.svf,,,TRUE,"BCID fail, BCID failが1回", +50,56,B-1-1,1,1,1,1,1,0,1,,24,2024-07-24T04:18:46Z,24.log,0.2.0,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +49,51,B-0-1,1,1,1,1,1,0,1,,24,2024-07-24T04:18:46Z,24.log,0.2.0,hashimoto,PS_firmware_top_2024_7_23.svf,,,TRUE,PP ASIC 5でhit efficiencyが99%が13回, +44,41,B-1-2,1,1,2,1,1,0,2,,24,2024-07-24T04:18:46Z,24.log,0.2.0,hashimoto,PS_firmware_top_2024_7_23.svf,,,TRUE,DAC read = 0, +43,49,B-0-2,1,1,1,1,1,0,1,,24,2024-07-24T04:18:46Z,24.log,0.2.0,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +72,68,B-1-9,1,1,1,1,1,0,1,,25,2024-07-24T05:15:02Z,25.log,1.0.0,"Hashimoto,Otsubo,Sube",PS_firmware_top_2024_7_23.svf,,,FALSE,, +71,46,B-0-9,1,1,1,2,1,0,2,,25,2024-07-24T05:15:02Z,25.log,1.0.0,"Hashimoto,Otsubo,Sube",PS_firmware_top_2024_7_23.svf,,,TRUE,clock skew out of range, +70,66,B-1-8,1,1,1,1,1,5,1,,25,2024-07-24T05:15:02Z,25.log,1.0.0,"Hashimoto,Otsubo,Sube",PS_firmware_top_2024_7_23.svf,,,TRUE,18 times: no enough reset times for ACL(自立型制御機構), +69,77,B-0-8,1,1,1,1,1,0,1,,25,2024-07-24T05:15:02Z,25.log,1.0.0,"Hashimoto,Otsubo,Sube",PS_firmware_top_2024_7_23.svf,,,FALSE,, +64,78,B-1-7,1,1,1,1,1,0,1,,25,2024-07-24T05:15:02Z,25.log,1.0.0,"Hashimoto,Otsubo,Sube",PS_firmware_top_2024_7_23.svf,,,TRUE,13 times: no enough reset times for ACL(自立型制御機構), +63,71,B-0-7,1,1,1,1,1,0,1,,25,2024-07-24T05:15:02Z,25.log,1.0.0,"Hashimoto,Otsubo,Sube",PS_firmware_top_2024_7_23.svf,,,TRUE,"PP ASIC ????でhit efficiencyが99%が10回, BCID shift(PP5の0~15ch)", +62,75,B-1-6,3,1,2,3,3,6,2,,25,2024-07-24T05:15:02Z,25.log,1.0.0,"Hashimoto,Otsubo,Sube",PS_firmware_top_2024_7_23.svf,,,TRUE,Invalid register values, +61,73,B-0-6,1,1,2,2,1,0,2,,25,2024-07-24T05:15:02Z,25.log,1.0.0,"Hashimoto,Otsubo,Sube",PS_firmware_top_2024_7_23.svf,,,TRUE,"DAC read = 0, clock skew out of range, BCID fail, BCID shift", +56,72,B-1-5,1,1,1,1,1,0,1,,25,2024-07-24T05:15:02Z,25.log,1.0.0,"Hashimoto,Otsubo,Sube",PS_firmware_top_2024_7_23.svf,,,FALSE,, +55,74,B-0-5,1,1,1,1,1,0,1,,25,2024-07-24T05:15:02Z,25.log,1.0.0,"Hashimoto,Otsubo,Sube",PS_firmware_top_2024_7_23.svf,,,FALSE,, +54,63,B-1-4,1,1,1,1,1,0,1,,25,2024-07-24T05:15:02Z,25.log,1.0.0,"Hashimoto,Otsubo,Sube",PS_firmware_top_2024_7_23.svf,,,FALSE,, +53,69,B-0-4,1,1,1,1,1,1,1,,25,2024-07-24T05:15:02Z,25.log,1.0.0,"Hashimoto,Otsubo,Sube",PS_firmware_top_2024_7_23.svf,,,TRUE,"BCID fail, BCID shift(PP5の0~15ch)", +48,65,B-1-3,1,1,1,1,1,0,1,,25,2024-07-24T05:15:02Z,25.log,1.0.0,"Hashimoto,Otsubo,Sube",PS_firmware_top_2024_7_23.svf,,,FALSE,, +47,64,B-0-3,1,1,1,1,1,0,1,,25,2024-07-24T05:15:02Z,25.log,1.0.0,"Hashimoto,Otsubo,Sube",PS_firmware_top_2024_7_23.svf,,,FALSE,, +46,67,B-1-2,1,1,1,1,1,0,1,,25,2024-07-24T05:15:02Z,25.log,1.0.0,"Hashimoto,Otsubo,Sube",PS_firmware_top_2024_7_23.svf,,,FALSE,, +45,70,B-0-2,1,1,1,1,1,0,1,,25,2024-07-24T05:15:02Z,25.log,1.0.0,"Hashimoto,Otsubo,Sube",PS_firmware_top_2024_7_23.svf,,,FALSE,, +42,76,B-1-1,1,1,1,1,1,1,1,,25,2024-07-24T05:15:02Z,25.log,1.0.0,"Hashimoto,Otsubo,Sube",PS_firmware_top_2024_7_23.svf,,,TRUE,"BCID fail, BCID shift(PP5, 6の0~15ch)", +41,62,B-0-1,1,1,1,1,1,0,1,,25,2024-07-24T05:15:02Z,25.log,1.0.0,"Hashimoto,Otsubo,Sube",PS_firmware_top_2024_7_23.svf,,,FALSE,, +116,1558,B-0-4,1,1,1,1,1,0,1,,29,2024-07-24T10:12:44Z,29.log,1.0.0,"Otsubo,Kondo",PS_firmware_top_2024_7_23.svf,,,FALSE,, +114,1560,B-0-9,1,1,1,2,1,0,2,,29,2024-07-24T10:12:44Z,29.log,1.0.0,"Otsubo,Kondo",PS_firmware_top_2024_7_23.svf,,,TRUE,clock skew out of range, +112,1562,B-0-8,1,1,1,1,1,0,1,,29,2024-07-24T10:12:44Z,29.log,1.0.0,"Otsubo,Kondo",PS_firmware_top_2024_7_23.svf,,,FALSE,, +111,1561,B-1-9,1,1,1,1,1,0,1,,29,2024-07-24T10:12:44Z,29.log,1.0.0,"Otsubo,Kondo",PS_firmware_top_2024_7_23.svf,,,TRUE,BCID shift(PP6の0~15ch), +110,1564,B-1-6,1,1,1,1,1,0,1,,29,2024-07-24T10:12:44Z,29.log,1.0.0,"Otsubo,Kondo",PS_firmware_top_2024_7_23.svf,,,FALSE,, +109,1567,B-1-5,1,1,1,2,1,0,2,,29,2024-07-24T10:12:44Z,29.log,1.0.0,"Otsubo,Kondo",PS_firmware_top_2024_7_23.svf,,,TRUE,"clock skew out of range, BCID fail, BCID shift(PP5の1~15ch)", +108,1566,B-0-6,1,1,1,1,1,0,1,,29,2024-07-24T10:12:44Z,29.log,1.0.0,"Otsubo,Kondo",PS_firmware_top_2024_7_23.svf,,,FALSE,, +107,1569,B-0-7,1,1,1,1,1,0,1,,29,2024-07-24T10:12:44Z,29.log,1.0.0,"Otsubo,Kondo",PS_firmware_top_2024_7_23.svf,,,FALSE,, +106,1568,B-1-7,1,1,1,1,1,0,1,,29,2024-07-24T10:12:44Z,29.log,1.0.0,"Otsubo,Kondo",PS_firmware_top_2024_7_23.svf,,,FALSE,, +105,1571,B-1-4,1,1,1,1,1,0,1,,29,2024-07-24T10:12:44Z,29.log,1.0.0,"Otsubo,Kondo",PS_firmware_top_2024_7_23.svf,,,FALSE,, +104,1570,B-0-5,1,1,1,1,1,0,1,,29,2024-07-24T10:12:44Z,29.log,1.0.0,"Otsubo,Kondo",PS_firmware_top_2024_7_23.svf,,,FALSE,, +103,1573,B-1-8,1,1,2,1,1,0,2,,29,2024-07-24T10:12:44Z,29.log,1.0.0,"Otsubo,Kondo",PS_firmware_top_2024_7_23.svf,,,TRUE,"Power Fail, BCID fail, BCID shift(PP5, 6の1~15ch), big tailがはずれかけ?", +101,1575,B-0-2,1,1,1,1,1,0,1,,29,2024-07-24T10:12:44Z,29.log,1.0.0,"Otsubo,Kondo",PS_firmware_top_2024_7_23.svf,,,FALSE,, +80,39,B-0-3,1,1,1,1,1,0,1,,29,2024-07-24T10:12:44Z,29.log,1.0.0,"Otsubo,Kondo",PS_firmware_top_2024_7_23.svf,,,FALSE,, +79,37,B-1-3,1,1,1,1,1,0,1,,29,2024-07-24T10:12:44Z,29.log,1.0.0,"Otsubo,Kondo",PS_firmware_top_2024_7_23.svf,,,TRUE,11 times: no enough reset times for ACL(自立型制御機構), +78,47,B-1-1,1,1,1,1,1,2,1,,29,2024-07-24T10:12:44Z,29.log,1.0.0,"Otsubo,Kondo",PS_firmware_top_2024_7_23.svf,,,TRUE,"BCID fail, BCID shift(PP5, 6の1~15ch)", +77,38,B-1-2,1,1,1,1,1,0,1,,29,2024-07-24T10:12:44Z,29.log,1.0.0,"Otsubo,Kondo",PS_firmware_top_2024_7_23.svf,,,FALSE,, +36,36,B-0-1,1,1,1,1,2,0,2,,29,2024-07-24T10:12:44Z,29.log,1.0.0,"Otsubo,Kondo",PS_firmware_top_2024_7_23.svf,,,TRUE,FPGA修理後のボードだが、U12つけ忘れで保管, +193,994,B-0-8,1,1,1,1,1,0,1,,30,2024-07-24T11:08:10Z,30.log,1.0.0,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +192,993,B-1-8,1,1,1,1,1,3,1,,30,2024-07-24T11:08:10Z,30.log,1.0.0,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +191,990,B-1-9,1,1,1,1,1,1,1,,30,2024-07-24T11:08:10Z,30.log,1.0.0,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +190,989,B-0-9,1,1,1,2,1,0,2,,30,2024-07-24T11:08:10Z,30.log,1.0.0,sube,PS_firmware_top_2024_7_23.svf,,,TRUE,clock skew out of range, +189,992,B-0-7,1,1,1,1,1,0,1,,30,2024-07-24T11:08:10Z,30.log,1.0.0,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +188,987,B-1-6,1,1,1,1,1,0,1,,30,2024-07-24T11:08:10Z,30.log,1.0.0,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +187,991,B-0-6,1,1,1,2,1,0,2,,30,2024-07-24T11:08:10Z,30.log,1.0.0,sube,PS_firmware_top_2024_7_23.svf,,,TRUE,clock skew out of range, +186,985,B-1-7,1,1,1,1,1,0,1,,30,2024-07-24T11:08:10Z,30.log,1.0.0,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +185,988,B-1-4,1,1,1,1,1,0,1,,30,2024-07-24T11:08:10Z,30.log,1.0.0,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +184,986,B-1-5,1,1,2,1,2,10,2,,30,2024-07-24T11:08:10Z,30.log,1.0.0,sube,PS_firmware_top_2024_7_23.svf,,,TRUE,"Power Fail, 19 times: no enough reset times for ACL(自立型制御機構) (PP5)→ daughter board載せ替えて追試験", +183,983,B-0-5,1,1,1,1,1,0,1,,30,2024-07-24T11:08:10Z,30.log,1.0.0,sube,PS_firmware_top_2024_7_23.svf,,,TRUE,"BCID fail, low efficiency(PP5,8)→ daughter board載せ替えて追試験", +182,984,B-0-4,1,1,1,1,1,1,1,,30,2024-07-24T11:08:10Z,30.log,1.0.0,sube,PS_firmware_top_2024_7_23.svf,,,TRUE,"BCID fail, BCID shift(PP1の1~15ch)", +181,981,B-1-3,1,1,1,1,2,0,2,,30,2024-07-24T11:08:10Z,30.log,1.0.0,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +180,982,B-0-3,1,1,1,1,1,1,1,,30,2024-07-24T11:08:10Z,30.log,1.0.0,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +119,1556,B-1-2,1,1,1,1,1,0,1,,30,2024-07-24T11:08:10Z,30.log,1.0.0,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +118,1554,B-0-2,1,1,1,1,1,0,1,,30,2024-07-24T11:08:10Z,30.log,1.0.0,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +117,1561,B-1-1,1,1,1,1,1,1,1,,30,2024-07-24T11:08:10Z,30.log,1.0.0,sube,PS_firmware_top_2024_7_23.svf,,,TRUE,"BCID fail, BCID shift(PP5の1~15ch)", +115,1559,B-0-1,1,1,1,1,1,0,1,,30,2024-07-24T11:08:10Z,30.log,1.0.0,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +199,9999,B-1-5,1,1,1,1,1,0,1,,32,2024-07-25T00:25:45Z,32.log,1.0.0,"Izumiyama,Sube",PS_firmware_top_2024_7_23.svf,,,FALSE,, +198,998,B-0-4,1,1,1,1,2,0,2,,32,2024-07-25T00:25:45Z,32.log,1.0.0,"Izumiyama,Sube",PS_firmware_top_2024_7_23.svf,,,TRUE,"BCID fail, BCID shift, PP ASIC 6の15番目が必ずnextに立つ", +197,1000,B-1-4,1,1,1,1,1,1,1,,32,2024-07-25T00:25:45Z,32.log,1.0.0,"Izumiyama,Sube",PS_firmware_top_2024_7_23.svf,,,FALSE,, +196,995,B-1-3,1,1,2,1,1,0,2,,32,2024-07-25T00:25:45Z,32.log,1.0.0,"Izumiyama,Sube",PS_firmware_top_2024_7_23.svf,,,TRUE,Power Fail, +195,997,B-1-2,1,1,1,1,1,0,1,,32,2024-07-25T00:25:45Z,32.log,1.0.0,"Izumiyama,Sube",PS_firmware_top_2024_7_23.svf,,,FALSE,, +194,996,B-0-2,1,1,1,1,1,0,1,,32,2024-07-25T00:25:45Z,32.log,1.0.0,"Izumiyama,Sube",PS_firmware_top_2024_7_23.svf,,,FALSE,, +170,1599,B-0-1,1,1,1,1,1,0,1,,32,2024-07-25T00:25:45Z,32.log,1.0.0,"Izumiyama,Sube",PS_firmware_top_2024_7_23.svf,,,FALSE,, +169,1596,B-1-1,1,1,1,1,1,0,1,,32,2024-07-25T00:25:45Z,32.log,1.0.0,"Izumiyama,Sube",PS_firmware_top_2024_7_23.svf,,,FALSE,, +168,1591,B-0-6,1,1,1,2,1,0,2,,32,2024-07-25T00:25:45Z,32.log,1.0.0,"Izumiyama,Sube",PS_firmware_top_2024_7_23.svf,,,TRUE,clock skew out of range, +167,1593,B-0-7,1,1,1,1,1,0,1,,32,2024-07-25T00:25:45Z,32.log,1.0.0,"Izumiyama,Sube",PS_firmware_top_2024_7_23.svf,,,TRUE,"BCID fail, BCID shift(PP1の1~15ch)", +166,1592,B-0-8,1,1,1,1,1,0,1,,32,2024-07-25T00:25:45Z,32.log,1.0.0,"Izumiyama,Sube",PS_firmware_top_2024_7_23.svf,,,FALSE,, +165,1594,B-0-9,1,1,1,2,1,0,2,,32,2024-07-25T00:25:45Z,32.log,1.0.0,"Izumiyama,Sube",PS_firmware_top_2024_7_23.svf,,,TRUE,"clock skew out of range, BCID fail", +164,1590,B-1-7,1,1,1,1,2,0,2,,32,2024-07-25T00:25:45Z,32.log,1.0.0,"Izumiyama,Sube",PS_firmware_top_2024_7_23.svf,,,TRUE,"BCID fail, PP ASIC 7の4番目が必ず1:1:1、daughter board載せ替え", +163,1589,B-1-9,1,1,1,1,1,1,1,,32,2024-07-25T00:25:45Z,32.log,1.0.0,"Izumiyama,Sube",PS_firmware_top_2024_7_23.svf,,,TRUE,"BCID fail, BCID shift(PP5, 6の1~15ch)", +162,1587,B-1-6,1,1,1,1,1,0,1,,32,2024-07-25T00:25:45Z,32.log,1.0.0,"Izumiyama,Sube",PS_firmware_top_2024_7_23.svf,,,FALSE,, +161,1588,B-1-8,1,1,1,1,1,0,1,,32,2024-07-25T00:25:45Z,32.log,1.0.0,"Izumiyama,Sube",PS_firmware_top_2024_7_23.svf,,,FALSE,, +160,1585,B-0-5,3,1,2,2,2,5,2,,32,2024-07-25T00:25:45Z,32.log,1.0.0,"Izumiyama,Sube",PS_firmware_top_2024_7_23.svf,,,TRUE,Si5395 not lock, +113,1563,B-0-3,1,1,1,1,1,0,1,,32,2024-07-25T00:25:45Z,32.log,1.0.0,"Izumiyama,Sube",PS_firmware_top_2024_7_23.svf,,,TRUE,10 times: no enough reset times for ACL(自立型制御機構), +179,980,B-0-4,1,1,1,1,1,2,1,,35,2024-07-25T02:35:01Z,35.log,1.0.1,"Izumiyama,Sube",PS_firmware_top_2024_7_23.svf,,,FALSE,, +178,979,B-1-3,1,1,1,1,1,0,1,,35,2024-07-25T02:35:01Z,35.log,1.0.1,"Izumiyama,Sube",PS_firmware_top_2024_7_23.svf,,,FALSE,, +177,978,B-1-5,1,1,1,1,1,0,1,,35,2024-07-25T02:35:01Z,35.log,1.0.1,"Izumiyama,Sube",PS_firmware_top_2024_7_23.svf,,,FALSE,, +176,977,B-0-5,1,1,1,1,1,0,1,,35,2024-07-25T02:35:01Z,35.log,1.0.1,"Izumiyama,Sube",PS_firmware_top_2024_7_23.svf,,,FALSE,, +175,1600,B-1-2,1,1,1,1,1,0,1,,35,2024-07-25T02:35:01Z,35.log,1.0.1,"Izumiyama,Sube",PS_firmware_top_2024_7_23.svf,,,FALSE,, +174,976,B-1-1,1,1,1,1,1,1,1,,35,2024-07-25T02:35:01Z,35.log,1.0.1,"Izumiyama,Sube",PS_firmware_top_2024_7_23.svf,,,FALSE,, +173,1598,B-0-1,1,1,1,1,2,0,2,,35,2024-07-25T02:35:01Z,35.log,1.0.1,"Izumiyama,Sube",PS_firmware_top_2024_7_23.svf,,,FALSE,, +172,1597,B-0-2,1,1,1,1,1,0,1,,35,2024-07-25T02:35:01Z,35.log,1.0.1,"Izumiyama,Sube",PS_firmware_top_2024_7_23.svf,,,TRUE,"BCID fail, 0:0:0", +171,1595,B-0-3,1,1,1,1,1,0,1,,35,2024-07-25T02:35:01Z,35.log,1.0.1,"Izumiyama,Sube",PS_firmware_top_2024_7_23.svf,,,FALSE,, +128,1527,B-1-8,1,1,1,1,1,0,1,,35,2024-07-25T02:35:01Z,35.log,1.0.1,"Izumiyama,Sube",PS_firmware_top_2024_7_23.svf,,,FALSE,, +127,1530,B-0-9,1,1,2,1,1,0,2,,35,2024-07-25T02:35:01Z,35.log,1.0.1,"Izumiyama,Sube",PS_firmware_top_2024_7_23.svf,,,TRUE,"Power Fail, 46 times: no enough reset times for ACL(自立型制御機構), PP2", +126,1528,B-0-8,1,1,1,1,1,5,1,,35,2024-07-25T02:35:01Z,35.log,1.0.1,"Izumiyama,Sube",PS_firmware_top_2024_7_23.svf,,,FALSE,, +125,1526,B-1-9,1,1,1,1,1,0,1,,35,2024-07-25T02:35:01Z,35.log,1.0.1,"Izumiyama,Sube",PS_firmware_top_2024_7_23.svf,,,FALSE,, +124,1553,B-1-6,1,1,1,1,1,0,1,,35,2024-07-25T02:35:01Z,35.log,1.0.1,"Izumiyama,Sube",PS_firmware_top_2024_7_23.svf,,,FALSE,, +123,1551,B-0-7,1,1,1,1,2,0,2,,35,2024-07-25T02:35:01Z,35.log,1.0.1,"Izumiyama,Sube",PS_firmware_top_2024_7_23.svf,,,FALSE,, +122,1552,B-1-7,1,1,1,1,1,0,1,,35,2024-07-25T02:35:01Z,35.log,1.0.1,"Izumiyama,Sube",PS_firmware_top_2024_7_23.svf,,,FALSE,, +121,1555,B-1-4,1,1,1,2,1,0,2,,35,2024-07-25T02:35:01Z,35.log,1.0.1,"Izumiyama,Sube",PS_firmware_top_2024_7_23.svf,,,TRUE,clock skew out of range, +120,1557,B-0-6,1,1,1,1,1,0,1,,35,2024-07-25T02:35:01Z,35.log,1.0.1,"Izumiyama,Sube",PS_firmware_top_2024_7_23.svf,,,FALSE,, +999999,,B-1-5,3,3,3,2,3,14,2,,39,2024-07-25T05:19:04Z,39.log,1.0.1,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,Dummy, +159,1583,B-1-6,1,1,1,1,1,0,1,,39,2024-07-25T05:19:04Z,39.log,1.0.1,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +158,1586,B-0-4,1,1,1,1,1,0,1,,39,2024-07-25T05:19:04Z,39.log,1.0.1,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +157,1580,B-0-8,1,1,1,1,1,3,1,,39,2024-07-25T05:19:04Z,39.log,1.0.1,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +156,1581,B-0-6,1,1,1,1,1,0,1,,39,2024-07-25T05:19:04Z,39.log,1.0.1,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +155,1584,B-1-8,1,1,1,1,1,0,1,,39,2024-07-25T05:19:04Z,39.log,1.0.1,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +154,1579,B-1-9,1,1,1,1,1,3,1,,39,2024-07-25T05:19:04Z,39.log,1.0.1,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +153,1582,B-0-9,1,1,1,2,1,0,2,,39,2024-07-25T05:19:04Z,39.log,1.0.1,sube,PS_firmware_top_2024_7_23.svf,,,TRUE,clock skew out of range, +139,1539,B-0-5,1,1,1,1,1,0,1,,39,2024-07-25T05:19:04Z,39.log,1.0.1,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +138,1540,B-1-3,1,1,1,1,1,0,1,,39,2024-07-25T05:19:04Z,39.log,1.0.1,sube,PS_firmware_top_2024_7_23.svf,,,TRUE,21 times: no enough reset times for ACL(自立型制御機構), +137,1537,B-1-2,1,1,2,1,1,0,2,,39,2024-07-25T05:19:04Z,39.log,1.0.1,sube,PS_firmware_top_2024_7_23.svf,,,TRUE,Power Fail, +136,1538,B-1-1,1,1,1,1,1,0,1,,39,2024-07-25T05:19:04Z,39.log,1.0.1,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +135,1535,B-0-1,1,1,2,1,1,0,2,,39,2024-07-25T05:19:04Z,39.log,1.0.1,sube,PS_firmware_top_2024_7_23.svf,,,TRUE,Power Fail, +134,1536,B-0-7,1,1,1,1,2,0,2,,39,2024-07-25T05:19:04Z,39.log,1.0.1,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +133,1533,B-1-4,1,1,1,1,1,2,1,,39,2024-07-25T05:19:04Z,39.log,1.0.1,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +131,1531,B-1-7,1,1,1,1,1,1,1,,39,2024-07-25T05:19:04Z,39.log,1.0.1,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +130,1532,B-0-2,1,1,1,1,1,1,1,,39,2024-07-25T05:19:04Z,39.log,1.0.1,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +129,1529,B-0-3,1,1,1,1,1,0,1,,39,2024-07-25T05:19:04Z,39.log,1.0.1,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +219,1170,B-0-8,1,1,1,1,1,9,1,,41,2024-07-25T06:53:20Z,41.log,1.0.1,Airu Makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +218,1168,B-0-9,1,1,1,2,1,0,2,,41,2024-07-25T06:53:20Z,41.log,1.0.1,Airu Makita,PS_firmware_top_2024_7_23.svf,,,TRUE,clocl skew out of range, +217,1166,B-1-9,1,1,1,1,1,0,1,,41,2024-07-25T06:53:20Z,41.log,1.0.1,Airu Makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +216,1167,B-1-8,1,1,1,1,1,5,1,,41,2024-07-25T06:53:20Z,41.log,1.0.1,Airu Makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +200,1151,B-1-6,1,1,1,1,1,0,1,,41,2024-07-25T06:53:20Z,41.log,1.0.1,Airu Makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +152,1578,B-0-1,1,1,1,1,2,0,2,,41,2024-07-25T06:53:20Z,41.log,1.0.1,Airu Makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +151,1577,B-1-1,1,1,1,1,1,1,1,,41,2024-07-25T06:53:20Z,41.log,1.0.1,Airu Makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +150,1576,B-0-3,1,1,1,1,1,0,1,,41,2024-07-25T06:53:20Z,41.log,1.0.1,Airu Makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +149,1549,B-1-3,1,1,2,2,2,1,2,,41,2024-07-25T06:53:20Z,41.log,1.0.1,Airu Makita,PS_firmware_top_2024_7_23.svf,,,TRUE,Power Fail, +148,1550,B-0-2,1,1,1,1,1,0,1,,41,2024-07-25T06:53:20Z,41.log,1.0.1,Airu Makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +147,1548,B-0-5,1,1,1,1,1,0,1,,41,2024-07-25T06:53:20Z,41.log,1.0.1,Airu Makita,PS_firmware_top_2024_7_23.svf,,,TRUE,"BCID fail, low efficiency", +146,1545,B-1-5,1,1,1,1,1,0,1,,41,2024-07-25T06:53:20Z,41.log,1.0.1,Airu Makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +145,1547,B-0-4,1,1,1,1,1,1,1,,41,2024-07-25T06:53:20Z,41.log,1.0.1,Airu Makita,PS_firmware_top_2024_7_23.svf,,,TRUE,"BCID fail, BCID shift(PP1の0~15ch)", +144,1546,B-1-2,1,1,1,1,1,0,1,,41,2024-07-25T06:53:20Z,41.log,1.0.1,Airu Makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +143,1543,B-0-7,1,1,1,1,2,0,2,,41,2024-07-25T06:53:20Z,41.log,1.0.1,Airu Makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +142,1544,B-1-4,1,1,1,1,1,0,1,,41,2024-07-25T06:53:20Z,41.log,1.0.1,Airu Makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +141,1542,B-1-7,1,1,1,1,1,0,1,,41,2024-07-25T06:53:20Z,41.log,1.0.1,Airu Makita,PS_firmware_top_2024_7_23.svf,,,TRUE,26 times: no enough reset times for ACL(自立型制御機構), +140,1541,B-0-6,1,1,1,1,1,0,1,,41,2024-07-25T06:53:20Z,41.log,1.0.1,Airu Makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +239,1189,B-1-8,1,1,1,1,1,0,1,,43,2024-07-25T08:22:25Z,43.log,1.0.1,amakita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +238,1190,B-0-9,1,1,1,2,2,0,2,,43,2024-07-25T08:22:25Z,43.log,1.0.1,amakita,PS_firmware_top_2024_7_23.svf,,,TRUE,"clock skew out of range,PPAsic5シグナルケーブルがきちんと刺さってなかった", +237,1188,B-1-9,1,1,1,1,1,0,1,,43,2024-07-25T08:22:25Z,43.log,1.0.1,amakita,PS_firmware_top_2024_7_23.svf,,,TRUE,BCID fail, +214,1165,B-0-1,1,1,1,1,1,0,1,,43,2024-07-25T08:22:25Z,43.log,1.0.1,amakita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +213,1164,B-0-2,1,1,1,1,1,0,1,,43,2024-07-25T08:22:25Z,43.log,1.0.1,amakita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +212,1162,B-0-3,1,1,1,1,1,0,1,,43,2024-07-25T08:22:25Z,43.log,1.0.1,amakita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +211,1163,B-1-2,1,1,1,1,1,0,1,,43,2024-07-25T08:22:25Z,43.log,1.0.1,amakita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +210,1160,B-1-3,1,1,2,2,2,0,2,,43,2024-07-25T08:22:25Z,43.log,1.0.1,amakita,PS_firmware_top_2024_7_23.svf,,,TRUE,"Power fail, Power failは100回試験 (RUN46) では再現されず", +209,1158,B-1-4,1,1,1,2,1,0,2,,43,2024-07-25T08:22:25Z,43.log,1.0.1,amakita,PS_firmware_top_2024_7_23.svf,,,TRUE,clock skew out of range, +208,1161,B-0-5,1,1,1,1,1,0,1,,43,2024-07-25T08:22:25Z,43.log,1.0.1,amakita,PS_firmware_top_2024_7_23.svf,,,TRUE,BCID fail, +207,1157,B-0-4,1,1,1,2,1,0,2,,43,2024-07-25T08:22:25Z,43.log,1.0.1,amakita,PS_firmware_top_2024_7_23.svf,,,TRUE,clock skew out of range, +206,1156,B-1-5,1,1,1,2,1,0,2,,43,2024-07-25T08:22:25Z,43.log,1.0.1,amakita,PS_firmware_top_2024_7_23.svf,,,TRUE,clock skew out of range, +205,1159,B-0-6,1,1,1,1,1,0,1,,43,2024-07-25T08:22:25Z,43.log,1.0.1,amakita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +204,1154,B-1-6,1,1,2,1,1,2,2,,43,2024-07-25T08:22:25Z,43.log,1.0.1,amakita,PS_firmware_top_2024_7_23.svf,,,TRUE,Power fail, +203,1155,B-0-7,2,1,3,2,3,9,2,,43,2024-07-25T08:22:25Z,43.log,1.0.1,amakita,PS_firmware_top_2024_7_23.svf,,,TRUE,RUN43 Si not locked RUN44では問題なし, +202,1152,B-1-7,1,1,1,1,1,0,1,,43,2024-07-25T08:22:25Z,43.log,1.0.1,amakita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +201,1153,B-0-8,1,1,1,1,1,0,1,,43,2024-07-25T08:22:25Z,43.log,1.0.1,amakita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +999999,,B-1-9,2,1,2,3,2,2,2,,47,2024-07-25T10:54:11Z,47.log,1.0.1,hashimoto,PS_firmware_top_2024_7_23.svf,,,TRUE,Dummy, +235,1187,B-0-1,1,1,1,1,2,0,2,,47,2024-07-25T10:54:11Z,47.log,1.0.1,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +234,1186,B-1-1,1,1,1,1,1,0,1,,47,2024-07-25T10:54:11Z,47.log,1.0.1,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +233,1183,B-1-3,1,1,2,2,2,0,2,,47,2024-07-25T10:54:11Z,47.log,1.0.1,hashimoto,PS_firmware_top_2024_7_23.svf,,,TRUE,"Power fail, clock skew out of range, Power failは100回試験 (RUN49) では再現されず", +232,1184,B-0-3,1,1,1,1,1,0,1,,47,2024-07-25T10:54:11Z,47.log,1.0.1,hashimoto,PS_firmware_top_2024_7_23.svf,,,TRUE,"BCID fail, BCID shift(PP6の1~15ch)", +231,1181,B-0-2,1,1,1,1,1,0,1,,47,2024-07-25T10:54:11Z,47.log,1.0.1,hashimoto,PS_firmware_top_2024_7_23.svf,,,TRUE,"BCID fail, BCID shift(PP6の1~15ch)", +230,1182,B-0-5,1,1,1,2,1,0,2,,47,2024-07-25T10:54:11Z,47.log,1.0.1,hashimoto,PS_firmware_top_2024_7_23.svf,,,TRUE,"clock skew out of range, BCID fail, BCID shift(PP6の1~15ch)", +229,1180,B-1-5,1,1,1,1,1,0,1,,47,2024-07-25T10:54:11Z,47.log,1.0.1,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +228,1179,B-0-4,1,1,1,1,2,10,2,,47,2024-07-25T10:54:11Z,47.log,1.0.1,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +227,1178,B-1-4,1,1,1,1,1,0,1,,47,2024-07-25T10:54:11Z,47.log,1.0.1,hashimoto,PS_firmware_top_2024_7_23.svf,,,TRUE,"BCID fail, BCID shift(PP5の1~15ch)", +226,1177,B-0-7,1,1,2,2,1,0,2,,47,2024-07-25T10:54:11Z,47.log,1.0.1,hashimoto,PS_firmware_top_2024_7_23.svf,,,TRUE,"Power fail, clock skew out of range", +225,1176,B-0-6,1,1,1,2,1,0,2,,47,2024-07-25T10:54:11Z,47.log,1.0.1,hashimoto,PS_firmware_top_2024_7_23.svf,,,TRUE,"clock skew out of range, BCID shift(PP6の1~15ch)", +224,1171,B-1-6,1,1,1,1,1,0,1,,47,2024-07-25T10:54:11Z,47.log,1.0.1,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +223,1174,B-1-7,1,1,1,1,1,0,1,,47,2024-07-25T10:54:11Z,47.log,1.0.1,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +222,1175,B-0-8,1,1,1,1,1,1,1,,47,2024-07-25T10:54:11Z,47.log,1.0.1,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +221,1172,B-0-9,1,1,1,2,2,10,2,,47,2024-07-25T10:54:11Z,47.log,1.0.1,hashimoto,PS_firmware_top_2024_7_23.svf,,,TRUE,"clock skew out of range, BCID shift(PP5の1~15ch)", +220,1173,B-1-8,1,1,1,1,1,0,1,,47,2024-07-25T10:54:11Z,47.log,1.0.1,hashimoto,PS_firmware_top_2024_7_23.svf,,,TRUE,BCID fail, +215,1169,B-1-1,2,1,1,1,2,1,2,,47,2024-07-25T08:22:25Z,47.log,1.0.1,amakita,PS_firmware_top_2024_7_23.svf,,,TRUE,"QSPI device ID does not match. inclueded in RUN45-, RUN47と49で問題が無いことを確認", +215,1169,B-1-2,1,1,1,1,1,0,1,,47,2024-07-25T10:54:11Z,47.log,1.0.1,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +999999,,B-1-2,0,0,0,1,0,0,0,,51,2024-07-25T12:45:19Z,51.log,1.0.1,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,clock試験でfailのものでonly clock試験を実施, +238,,B-0-4,0,0,0,1,0,0,0,,51,2024-07-25T12:45:19Z,51.log,1.0.1,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,clock試験でfailのものでonly clock試験を実施, +230,,B-0-5,0,0,0,1,0,0,0,,51,2024-07-25T12:45:19Z,51.log,1.0.1,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,clock試験でfailのものでonly clock試験を実施, +225,,B-0-6,0,0,0,1,0,0,0,,51,2024-07-25T12:45:19Z,51.log,1.0.1,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,clock試験でfailのものでonly clock試験を実施, +221,1172,B-0-9,0,0,0,1,0,0,0,,51,2024-07-25T12:45:19Z,51.log,1.0.1,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,clock試験でfailのものでonly clock試験を実施, +218,,B-1-4,0,0,0,1,0,0,0,,51,2024-07-25T12:45:19Z,51.log,1.0.1,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,clock試験でfailのものでonly clock試験を実施, +209,1158,B-1-6,0,0,0,1,0,0,0,,51,2024-07-25T12:45:19Z,51.log,1.0.1,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,clock試験でfailのものでonly clock試験を実施, +207,,B-0-8,0,0,0,1,0,0,0,,51,2024-07-25T12:45:19Z,51.log,1.0.1,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,clock試験でfailのものでonly clock試験を実施, +206,1156,B-0-7,0,0,0,1,0,0,0,,51,2024-07-25T12:45:19Z,51.log,1.0.1,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,clock試験でfailのものでonly clock試験を実施, +190,,B-1-5,0,0,0,1,0,0,0,,51,2024-07-25T12:45:19Z,51.log,1.0.1,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,clock試験でfailのものでonly clock試験を実施, +187,,B-1-1,0,0,0,1,0,0,0,,51,2024-07-25T12:45:19Z,51.log,1.0.1,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,clock試験でfailのものでonly clock試験を実施, +168,,B-1-7,0,0,0,1,0,0,0,,51,2024-07-25T12:45:19Z,51.log,1.0.1,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,clock試験でfailのものでonly clock試験を実施, +165,1594,B-0-3,0,0,0,1,0,0,0,,51,2024-07-25T12:45:19Z,51.log,1.0.1,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,clock試験でfailのものでonly clock試験を実施, +153,,B-1-8,0,0,0,1,0,0,0,,51,2024-07-25T12:45:19Z,51.log,1.0.1,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,clock試験でfailのものでonly clock試験を実施, +121,,B-0-2,0,0,0,1,0,0,0,,51,2024-07-25T12:45:19Z,51.log,1.0.1,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,clock試験でfailのものでonly clock試験を実施, +114,,B-1-3,0,0,0,1,0,0,0,,51,2024-07-25T12:45:19Z,51.log,1.0.1,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,clock試験でfailのものでonly clock試験を実施, +109,,B-1-9,0,0,0,1,0,0,0,,51,2024-07-25T12:45:19Z,51.log,1.0.1,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,clock試験でfailのものでonly clock試験を実施, +71,,B-0-1,0,0,0,1,0,0,0,,51,2024-07-25T12:45:19Z,51.log,1.0.1,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,clock試験でfailのものでonly clock試験を実施, +335,562,B-1-8,1,1,2,1,1,0,2,,66,2024-08-06T03:49:29Z,66.log,1.0.2,hashimoto,PS_firmware_top_2024_7_23.svf,,,TRUE,"Power fail,", +334,560,B-0-8,1,1,1,1,1,0,1,,66,2024-08-06T03:49:29Z,66.log,1.0.2,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +333,559,B-1-9,1,1,1,1,1,1,1,,66,2024-08-06T03:49:29Z,66.log,1.0.2,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +332,558,B-0-9,1,1,1,1,1,0,1,,66,2024-08-06T03:49:29Z,66.log,1.0.2,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +330,550,B-1-6,1,1,1,1,1,1,1,,66,2024-08-06T03:49:29Z,66.log,1.0.2,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +328,553,B-1-7,1,1,1,1,1,0,1,,66,2024-08-06T03:49:29Z,66.log,1.0.2,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +327,555,B-1-2,1,1,1,1,1,0,1,,66,2024-08-06T03:49:29Z,66.log,1.0.2,hashimoto,PS_firmware_top_2024_7_23.svf,,,TRUE,"BCID fail, BCID 1:1:1", +326,551,B-1-5,1,1,1,1,1,1,1,,66,2024-08-06T03:49:29Z,66.log,1.0.2,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +325,552,B-0-5,1,1,1,1,1,0,1,,66,2024-08-06T03:49:29Z,66.log,1.0.2,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +324,,B-0-2,1,1,1,1,1,1,1,,66,2024-08-06T03:49:29Z,66.log,1.0.2,hashimoto,PS_firmware_top_2024_7_23.svf,,,TRUE,"15 times: no enough reset times for ACL, PP5/6→ daughter board載せ替えて追試験", +323,547,B-1-3,1,1,1,1,1,0,1,,66,2024-08-06T03:49:29Z,66.log,1.0.2,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +322,544,B-1-4,1,1,1,1,2,0,2,,66,2024-08-06T03:49:29Z,66.log,1.0.2,hashimoto,PS_firmware_top_2024_7_23.svf,,,TRUE,"BCID fail, PP5で100回、daughter board載せ替えて試験", +321,548,B-0-3,1,1,1,1,1,0,1,,66,2024-08-06T03:49:29Z,66.log,1.0.2,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +320,545,B-0-4,1,1,1,1,1,1,1,,66,2024-08-06T03:49:29Z,66.log,1.0.2,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +339,564,B-1-3,1,1,1,1,1,0,1,,71,2024-08-06T08:02:09Z,71.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +338,565,B-0-3,1,1,1,1,1,0,1,,71,2024-08-06T08:02:09Z,71.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,"BCID fail, BCID shift, PP5→新基準でクリア", +337,563,B-1-1,1,1,1,1,1,1,1,,71,2024-08-06T08:02:09Z,71.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,"BCID fail, BCID shift, PP5 →新基準でクリア", +336,561,B-0-1,1,1,1,1,1,0,1,,71,2024-08-06T08:02:09Z,71.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +331,557,B-0-2,1,1,1,1,1,0,1,,71,2024-08-06T08:02:09Z,71.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +329,554,B-1-2,1,1,1,1,1,1,1,,71,2024-08-06T08:02:09Z,71.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +271,1223,B-1-9,1,1,1,1,1,0,1,,71,2024-08-06T08:02:09Z,71.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +270,1220,B-1-8,1,1,2,1,1,0,2,,71,2024-08-06T08:02:09Z,71.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,TRUE,Power fail, +269,1221,B-0-9,1,1,1,1,1,0,1,,71,2024-08-06T08:02:09Z,71.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +268,1218,B-0-8,1,1,1,1,1,0,1,,71,2024-08-06T08:02:09Z,71.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,"BCID fail, BCID shift, PP6→新基準でクリア", +267,1216,B-0-7,1,1,1,1,1,0,1,,71,2024-08-06T08:02:09Z,71.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +266,1219,B-1-7,1,1,1,1,1,0,1,,71,2024-08-06T08:02:09Z,71.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +265,1217,B-1-6,1,1,1,1,1,1,1,,71,2024-08-06T08:02:09Z,71.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +264,1214,B-0-6,1,1,1,1,1,0,1,,71,2024-08-06T08:02:09Z,71.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +263,1215,B-1-5,1,1,1,1,1,1,1,,71,2024-08-06T08:02:09Z,71.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +262,1212,B-0-5,1,1,1,1,1,0,1,,71,2024-08-06T08:02:09Z,71.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +261,1213,B-1-4,1,1,1,1,1,0,1,,71,2024-08-06T08:02:09Z,71.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +260,1208,B-0-4,1,1,1,1,1,0,1,,71,2024-08-06T08:02:09Z,71.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +319,546,B-1-6,1,1,1,1,1,0,1,,72,2024-08-06T08:42:13Z,72.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +318,543,B-0-5,1,1,1,1,1,0,1,,72,2024-08-06T08:42:13Z,72.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +317,544,B-1-5,1,1,1,1,1,0,1,,72,2024-08-06T08:42:13Z,72.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +316,87,B-0-6,1,1,1,1,1,7,1,,72,2024-08-06T08:42:13Z,72.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,TRUE,"71 times: no enough reset times for ACL, PP8 → daughter board載せ替えて追試験", +315,541,B-0-7,1,1,1,1,1,0,1,,72,2024-08-06T08:42:13Z,72.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +314,539,B-0-8,1,1,1,1,1,0,1,,72,2024-08-06T08:42:13Z,72.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,"BCID fail, BCID shift, PP5/6→新基準でクリア", +313,540,B-1-8,1,1,1,1,1,0,1,,72,2024-08-06T08:42:13Z,72.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +312,535,B-1-9,1,1,1,1,1,0,1,,72,2024-08-06T08:42:13Z,72.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +311,538,B-0-9,1,1,1,1,1,0,1,,72,2024-08-06T08:42:13Z,72.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +310,537,B-1-7,1,1,1,1,1,0,1,,72,2024-08-06T08:42:13Z,72.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +279,504,B-1-4,1,1,1,1,1,0,1,,72,2024-08-06T08:42:13Z,72.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +278,505,B-0-4,1,1,1,1,1,0,1,,72,2024-08-06T08:42:13Z,72.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,"BCID fail, BCID shift, BCID 0:0:0, PP5/6 →新基準でクリア", +277,502,B-0-3,1,1,1,1,1,0,1,,72,2024-08-06T08:42:13Z,72.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +276,501,B-1-3,1,1,1,1,1,0,1,,72,2024-08-06T08:42:13Z,72.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +275,503,B-1-2,1,1,1,1,1,0,1,,72,2024-08-06T08:42:13Z,72.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +274,1224,B-1-1,1,1,1,1,1,1,1,,72,2024-08-06T08:42:13Z,72.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,"BCID fail, BCID shift, PP1 →新基準でクリア", +273,1225,B-0-1,1,1,1,1,1,0,1,,72,2024-08-06T08:42:13Z,72.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +272,1222,B-0-2,1,1,1,1,1,1,1,,72,2024-08-06T08:42:13Z,72.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +359,1058,B-1-7,1,1,1,1,1,0,1,,75,2024-08-06T11:05:22Z,75.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +358,1059,B-1-6,1,1,1,1,1,0,1,,75,2024-08-06T11:05:22Z,75.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,TRUE,BCID shift, +357,1060,B-0-3,1,1,1,1,1,0,1,,75,2024-08-06T11:05:22Z,75.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +356,1056,B-0-7,1,1,2,1,1,0,2,,75,2024-08-06T11:05:22Z,75.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,TRUE,Power fail, +355,1057,B-1-3,1,1,1,1,1,0,1,,75,2024-08-06T11:05:22Z,75.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +354,1055,B-1-2,1,1,1,1,1,0,1,,75,2024-08-06T11:05:22Z,75.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +353,1052,B-1-9,1,1,1,1,1,0,1,,75,2024-08-06T11:05:22Z,75.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +352,1054,B-0-2,1,1,1,1,1,1,1,,75,2024-08-06T11:05:22Z,75.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,"BCID fail, BCID shift, PP3 →新基準でクリア", +309,533,B-1-8,1,1,1,1,1,1,1,,75,2024-08-06T11:05:22Z,75.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +308,534,B-0-8,1,1,1,1,1,0,1,,75,2024-08-06T11:05:22Z,75.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +307,536,B-0-9,1,1,1,1,1,0,1,,75,2024-08-06T11:05:22Z,75.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +306,532,B-1-4,1,1,1,1,1,0,1,,75,2024-08-06T11:05:22Z,75.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +305,531,B-0-4,1,1,2,1,1,1,2,,75,2024-08-06T11:05:22Z,75.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,TRUE,Power fail, +304,530,B-0-1,1,1,1,1,1,0,1,,75,2024-08-06T11:05:22Z,75.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +303,529,B-1-5,1,1,1,1,1,0,1,,75,2024-08-06T11:05:22Z,75.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +302,527,B-0-6,1,1,1,1,1,0,1,,75,2024-08-06T11:05:22Z,75.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +301,528,B-1-1,1,1,1,1,1,1,1,,75,2024-08-06T11:05:22Z,75.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,TRUE,"BCID shift, 10回reset足りず,PP1,5", +300,526,B-0-5,1,1,1,1,1,0,1,,75,2024-08-06T11:05:22Z,75.log,1.0.2,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,, +399,1049,B-1-6,1,1,1,1,1,2,1,,78,2024-08-07T00:33:06Z,78.log,1.0.3,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +398,1050,B-1-8,1,1,1,1,1,0,1,,78,2024-08-07T00:33:06Z,78.log,1.0.3,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +397,1047,B-1-9,1,1,1,1,1,0,1,,78,2024-08-07T00:33:06Z,78.log,1.0.3,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +382,1034,B-0-9,1,1,1,1,1,0,1,,78,2024-08-07T00:33:06Z,78.log,1.0.3,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,BCID 1:1:1 →新基準でクリア, +381,1032,B-1-7,1,1,1,1,1,0,1,,78,2024-08-07T00:33:06Z,78.log,1.0.3,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +380,1031,B-0-8,1,1,1,1,1,0,1,,78,2024-08-07T00:33:06Z,78.log,1.0.3,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +351,1053,B-0-1,1,1,1,1,1,0,1,,78,2024-08-07T00:33:06Z,78.log,1.0.3,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +350,1051,B-1-1,1,1,1,1,1,1,1,,78,2024-08-07T00:33:06Z,78.log,1.0.3,hashimoto,PS_firmware_top_2024_7_23.svf,,,TRUE,"13 times : no enough reset for ACL,PP5→メザニン取り換え1051 -> 81", +349,575,B-0-2,1,1,1,1,1,0,1,,78,2024-08-07T00:33:06Z,78.log,1.0.3,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +348,574,B-0-5,1,1,1,1,1,0,1,,78,2024-08-07T00:33:06Z,78.log,1.0.3,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +347,570,B-1-2,1,1,1,1,1,0,1,,78,2024-08-07T00:33:06Z,78.log,1.0.3,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +346,572,B-0-3,1,1,1,1,1,0,1,,78,2024-08-07T00:33:06Z,78.log,1.0.3,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +345,573,B-1-3,1,1,1,1,1,0,1,,78,2024-08-07T00:33:06Z,78.log,1.0.3,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +344,569,B-1-5,1,1,1,1,1,1,1,,78,2024-08-07T00:33:06Z,78.log,1.0.3,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +343,568,B-0-6,1,1,1,1,1,0,1,,78,2024-08-07T00:33:06Z,78.log,1.0.3,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +342,567,B-0-4,1,1,1,1,1,1,1,,78,2024-08-07T00:33:06Z,78.log,1.0.3,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +341,571,B-1-4,1,1,1,1,2,0,2,,78,2024-08-07T00:33:06Z,78.log,1.0.3,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +340,566,B-0-7,1,1,1,1,1,0,1,,78,2024-08-07T00:33:06Z,78.log,1.0.3,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +396,1045,B-1-8,1,1,1,1,1,0,1,,81,2024-08-07T03:21:13Z,81.log,1.0.4,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +395,1048,B-1-9,1,1,1,1,1,0,1,,81,2024-08-07T03:21:13Z,81.log,1.0.4,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +394,1046,B-0-8,1,1,1,1,1,0,1,,81,2024-08-07T03:21:13Z,81.log,1.0.4,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +393,不明,B-0-5,1,1,1,1,2,0,2,,81,2024-08-07T03:21:13Z,81.log,1.0.4,hashimoto,PS_firmware_top_2024_7_23.svf,,,TRUE,BCID 0:0:0 100times、試験時記述はなかったがdaughter board載せ替えた, +392,1043,B-0-9,1,1,1,1,1,0,1,,81,2024-08-07T03:21:13Z,81.log,1.0.4,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +391,1041,B-1-5,1,1,1,1,1,1,1,,81,2024-08-07T03:21:13Z,81.log,1.0.4,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +390,1042,B-0-7,1,1,1,1,1,0,1,,81,2024-08-07T03:21:13Z,81.log,1.0.4,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +389,1040,B-1-4,1,1,1,1,1,0,1,,81,2024-08-07T03:21:13Z,81.log,1.0.4,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,BCID 1:1:1 →新基準でクリア, +388,1039,B-0-4,1,1,1,1,1,1,1,,81,2024-08-07T03:21:13Z,81.log,1.0.4,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +387,1037,B-1-6,1,1,1,1,2,10,2,,81,2024-08-07T03:21:13Z,81.log,1.0.4,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +386,1038,B-0-6,1,1,1,1,1,0,1,,81,2024-08-07T03:21:13Z,81.log,1.0.4,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +385,1035,B-1-3,1,1,1,1,1,0,1,,81,2024-08-07T03:21:13Z,81.log,1.0.4,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +384,1036,B-1-7,1,1,1,1,2,0,2,,81,2024-08-07T03:21:13Z,81.log,1.0.4,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +383,1033,B-0-3,1,1,1,1,1,0,1,,81,2024-08-07T03:21:13Z,81.log,1.0.4,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +298,524,B-1-1,1,1,1,1,2,10,2,,81,2024-08-07T03:21:13Z,81.log,1.0.4,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +297,523,B-1-2,1,1,1,1,1,1,1,,81,2024-08-07T03:21:13Z,81.log,1.0.4,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +296,520,B-0-2,1,1,1,1,1,1,1,,81,2024-08-07T03:21:13Z,81.log,1.0.4,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,, +293,518,B-0-1,1,1,1,1,1,0,1,,81,2024-08-07T03:21:13Z,81.log,1.0.4,hashimoto,PS_firmware_top_2024_7_23.svf,,,FALSE,efficiency 99% →新基準でクリア, +999999,,B-0-5,2,3,2,3,2,9,2,,83,2024-08-07T04:39:42Z,83.log,1.0.4,skondo,PS_firmware_top_2024_7_23.svf,,,TRUE,, +295,522,B-1-8,1,1,1,1,1,0,1,,83,2024-08-07T04:39:42Z,83.log,1.0.4,skondo,PS_firmware_top_2024_7_23.svf,,,FALSE,, +294,521,B-0-8,1,1,1,1,2,10,2,,83,2024-08-07T04:39:42Z,83.log,1.0.4,skondo,PS_firmware_top_2024_7_23.svf,,,FALSE,, +292,519,B-0-9,1,1,1,1,1,0,1,,83,2024-08-07T04:39:42Z,83.log,1.0.4,skondo,PS_firmware_top_2024_7_23.svf,,,TRUE,invalid register number, +291,516,B-1-9,2,3,2,3,3,14,2,,83,2024-08-07T04:39:42Z,83.log,1.0.4,skondo,PS_firmware_top_2024_7_23.svf,,,TRUE,communication error(SFP+半抜け), +290,517,B-1-7,1,1,1,1,1,0,1,,83,2024-08-07T04:39:42Z,83.log,1.0.4,skondo,PS_firmware_top_2024_7_23.svf,,,FALSE,BCID 1:1:1→新基準でクリア, +289,512,B-0-6,1,1,1,1,1,0,1,,83,2024-08-07T04:39:42Z,83.log,1.0.4,skondo,PS_firmware_top_2024_7_23.svf,,,FALSE,, +288,515,B-1-6,1,1,1,1,1,0,1,,83,2024-08-07T04:39:42Z,83.log,1.0.4,skondo,PS_firmware_top_2024_7_23.svf,,,FALSE,, +287,514,B-0-7,1,1,1,1,1,0,1,,83,2024-08-07T04:39:42Z,83.log,1.0.4,skondo,PS_firmware_top_2024_7_23.svf,,,FALSE,, +286,513,B-0-1,1,1,1,1,1,0,1,,83,2024-08-07T04:39:42Z,83.log,1.0.4,skondo,PS_firmware_top_2024_7_23.svf,,,FALSE,efficiency 99% 1time →新基準でクリア, +285,511,B-1-4,1,1,1,1,1,0,1,,83,2024-08-07T04:39:42Z,83.log,1.0.4,skondo,PS_firmware_top_2024_7_23.svf,,,FALSE,, +284,510,B-1-5,1,1,1,1,1,0,1,,83,2024-08-07T04:39:42Z,83.log,1.0.4,skondo,PS_firmware_top_2024_7_23.svf,,,FALSE,, +283,509,B-1-1,1,1,1,1,1,1,1,,83,2024-08-07T04:39:42Z,83.log,1.0.4,skondo,PS_firmware_top_2024_7_23.svf,,,FALSE,, +282,508,B-0-4,1,1,1,1,1,5,1,,83,2024-08-07T04:39:42Z,83.log,1.0.4,skondo,PS_firmware_top_2024_7_23.svf,,,FALSE,, +281,506,B-1-2,1,1,1,1,2,0,2,,83,2024-08-07T04:39:42Z,83.log,1.0.4,skondo,PS_firmware_top_2024_7_23.svf,,,FALSE,, +242,1194,B-1-3,1,1,1,1,2,0,2,,83,2024-08-07T04:39:42Z,83.log,1.0.4,skondo,PS_firmware_top_2024_7_23.svf,,,FALSE,"BCID 0:0:0, BCID 1:1:1 →新基準でクリア", +241,1191,B-0-3,1,1,1,1,1,0,1,,83,2024-08-07T04:39:42Z,83.log,1.0.4,skondo,PS_firmware_top_2024_7_23.svf,,,FALSE,, +240,1192,B-0-2,1,1,1,1,1,1,1,,83,2024-08-07T04:39:42Z,83.log,1.0.4,skondo,PS_firmware_top_2024_7_23.svf,,,FALSE,, +360,1061,B-1-9,1,1,1,1,1,0,1,,85,2024-08-07T06:18:09Z,85.log,1.0.4,makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +259,1209,B-1-7,1,1,1,1,1,1,1,,85,2024-08-07T06:18:09Z,85.log,1.0.4,makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +258,1210,B-1-1,1,1,1,1,1,1,1,,85,2024-08-07T06:18:09Z,85.log,1.0.4,makita,PS_firmware_top_2024_7_23.svf,,,FALSE,BCID shift →新基準でクリア, +257,1211,B-0-9,1,1,1,1,1,0,1,,85,2024-08-07T06:18:09Z,85.log,1.0.4,makita,PS_firmware_top_2024_7_23.svf,,,FALSE,BCID 0:0:0 →新基準でクリア, +256,1206,B-0-1,1,1,1,1,1,0,1,,85,2024-08-07T06:18:09Z,85.log,1.0.4,makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +255,1207,B-0-3,3,1,2,3,2,2,2,,85,2024-08-07T06:18:09Z,85.log,1.0.4,makita,PS_firmware_top_2024_7_23.svf,,,TRUE,Si not locked, +254,1204,B-0-8,1,1,1,1,1,0,1,,85,2024-08-07T06:18:09Z,85.log,1.0.4,makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +253,1205,B-1-3,1,1,1,1,1,0,1,,85,2024-08-07T06:18:09Z,85.log,1.0.4,makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +252,1202,B-1-8,1,1,1,1,1,0,1,,85,2024-08-07T06:18:09Z,85.log,1.0.4,makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +251,1203,B-1-6,1,1,1,1,2,0,2,,85,2024-08-07T06:18:09Z,85.log,1.0.4,makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +250,1201,B-0-7,1,1,1,1,1,0,1,,85,2024-08-07T06:18:09Z,85.log,1.0.4,makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +249,1200,B-1-4,1,1,1,1,1,0,1,,85,2024-08-07T06:18:09Z,85.log,1.0.4,makita,PS_firmware_top_2024_7_23.svf,,,TRUE,"23 times reset : no enough reset for ACL,PP2,5", +248,1199,B-0-4,1,1,1,1,1,0,1,,85,2024-08-07T06:18:09Z,85.log,1.0.4,makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +247,1195,B-1-2,1,1,1,1,1,0,1,,85,2024-08-07T06:18:09Z,85.log,1.0.4,makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +246,1197,B-0-5,1,1,1,1,1,0,1,,85,2024-08-07T06:18:09Z,85.log,1.0.4,makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +245,1198,B-0-6,1,1,1,1,1,0,1,,85,2024-08-07T06:18:09Z,85.log,1.0.4,makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +244,1196,B-1-5,1,1,1,1,1,0,1,,85,2024-08-07T06:18:09Z,85.log,1.0.4,makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +243,1193,B-0-2,1,1,1,1,1,0,1,,85,2024-08-07T06:18:09Z,85.log,1.0.4,makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +378,1030,B-0-5,3,1,2,2,3,13,2,,87,2024-08-07T07:44:16Z,87.log,1.0.4,makita,PS_firmware_top_2024_7_23.svf,,,TRUE,FPGA not reprogramed from flash memory, +377,1027,B-0-4,1,1,1,1,1,0,1,,87,2024-08-07T07:44:16Z,87.log,1.0.4,makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +376,1026,B-1-2,1,1,1,1,1,0,1,,87,2024-08-07T07:44:16Z,87.log,1.0.4,makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +375,1028,B-0-3,1,1,1,1,1,0,1,,87,2024-08-07T07:44:16Z,87.log,1.0.4,makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +374,1075,B-0-9,1,1,1,1,1,0,1,,87,2024-08-07T07:44:16Z,87.log,1.0.4,makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +373,1074,B-1-3,1,1,1,1,1,0,1,,87,2024-08-07T07:44:16Z,87.log,1.0.4,makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +372,1073,B-0-8,1,1,1,1,1,0,1,,87,2024-08-07T07:44:16Z,87.log,1.0.4,makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +371,1072,B-0-2,1,1,1,1,1,0,1,,87,2024-08-07T07:44:16Z,87.log,1.0.4,makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +370,1070,B-1-8,1,1,1,1,1,0,1,,87,2024-08-07T07:44:16Z,87.log,1.0.4,makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +369,1071,B-1-9,1,1,1,1,1,0,1,,87,2024-08-07T07:44:16Z,87.log,1.0.4,makita,PS_firmware_top_2024_7_23.svf,,,FALSE,BCID 1:1:1 →新基準でクリア, +368,1068,B-1-6,1,1,1,1,2,0,2,,87,2024-08-07T07:44:16Z,87.log,1.0.4,makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +367,1069,B-1-1,1,1,1,1,1,1,1,,87,2024-08-07T07:44:16Z,87.log,1.0.4,makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +366,1067,B-1-5,1,1,1,1,1,0,1,,87,2024-08-07T07:44:16Z,87.log,1.0.4,makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +365,1066,B-0-1,1,1,1,1,1,0,1,,87,2024-08-07T07:44:16Z,87.log,1.0.4,makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +364,1064,B-0-6,1,1,1,1,1,0,1,,87,2024-08-07T07:44:16Z,87.log,1.0.4,makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +363,1065,B-1-4,1,1,1,1,1,0,1,,87,2024-08-07T07:44:16Z,87.log,1.0.4,makita,PS_firmware_top_2024_7_23.svf,,,FALSE,試験はpassしたが、1V8Dの抵抗値が0.6[kΩ], +362,1063,B-0-7,1,1,1,1,1,0,1,,87,2024-08-07T07:44:16Z,87.log,1.0.4,makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +361,1062,B-1-7,1,1,1,1,1,0,1,,87,2024-08-07T07:44:16Z,87.log,1.0.4,makita,PS_firmware_top_2024_7_23.svf,,,FALSE,, +356,1056,B-0-5,1,1,2,1,1,0,2,,89,2024-08-08T02:49:55Z,89.log,1.0.4,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,追試試験:Power fail -> log解析の結果3V3Aが少し高い (3.21V) だけだったのでok扱いとする, +335,562,B-0-6,1,1,1,1,1,0,1,,89,2024-08-08T02:49:55Z,89.log,1.0.4,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,追試試験:, +322,91,B-1-1,1,1,1,1,1,1,1,,89,2024-08-08T02:49:55Z,89.log,1.0.4,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,追試試験:daughter board載せ替えて試験, +305,531,B-1-5,1,1,1,1,1,0,1,,89,2024-08-08T02:49:55Z,89.log,1.0.4,sube,PS_firmware_top_2024_7_23.svf,,,TRUE,"追試試験:BCID shift, BCID 0:0:0", +280,507,B-1-8,1,1,1,1,1,0,1,,89,2024-08-08T02:49:55Z,89.log,1.0.4,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,"追試試験:BCID fail, effi99%,4,PP7", +270,1220,B-1-4,1,1,1,1,1,0,1,,89,2024-08-08T02:49:55Z,89.log,1.0.4,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,追試試験:, +204,1154,B-0-2,1,1,1,1,1,0,1,,89,2024-08-08T02:49:55Z,89.log,1.0.4,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,追試試験:, +196,995,B-1-3,1,1,1,1,1,5,1,,89,2024-08-08T02:49:55Z,89.log,1.0.4,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,追試試験:, +164,43,B-1-9,1,1,1,1,1,0,1,,89,2024-08-08T02:49:55Z,89.log,1.0.4,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,追試試験:daughter board載せ替えて試験, +160,1585,B-0-7,1,1,1,1,2,7,2,,89,2024-08-08T02:49:55Z,89.log,1.0.4,sube,PS_firmware_top_2024_7_23.svf,,,TRUE,"追試試験:BCID fail, effi99%,8,PP7", +149,1549,B-0-9,1,1,1,1,1,0,1,,89,2024-08-08T02:49:55Z,89.log,1.0.4,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,追試試験:, +137,1537,B-0-4,1,1,1,1,1,1,1,,89,2024-08-08T02:49:55Z,89.log,1.0.4,sube,PS_firmware_top_2024_7_23.svf,,,TRUE,"追試試験:BCID fail, BCID 0:0:0, PP5/6", +132,57,B-0-8,1,1,1,1,1,0,1,,89,2024-08-08T02:49:55Z,89.log,1.0.4,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,追試試験:daughter board載せ替えて試験, +127,1530,B-0-1,1,1,1,1,1,9,1,,89,2024-08-08T02:49:55Z,89.log,1.0.4,sube,PS_firmware_top_2024_7_23.svf,,,TRUE,"追試試験:BCIDfail, effi99%,5,PP1/2, BCID 0:0:0, PP5, BCID shift, PP6", +103,1573,B-1-6,1,1,1,1,1,0,1,,89,2024-08-08T02:49:55Z,89.log,1.0.4,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,追試試験:, +74,52,B-1-2,1,1,1,1,1,0,1,,89,2024-08-08T02:49:55Z,89.log,1.0.4,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,追試試験:, +62,75,B-1-7,1,1,1,1,1,1,1,,89,2024-08-08T02:49:55Z,89.log,1.0.4,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,追試試験:, +44,41,B-0-3,1,1,1,1,1,0,1,,89,2024-08-08T02:49:55Z,89.log,1.0.4,sube,PS_firmware_top_2024_7_23.svf,,,FALSE,追試試験:, +393,79,B-0-3,1,1,1,1,1,0,1,,94,2024-08-09T01:08:51Z,94.log,1.0.4,kondo,PS_firmware_top_2024_7_23.svf,,,FALSE,追試験:試験時記述はなかったがdaughter board載せ替えたもの, +378,1030,B-0-4,1,1,1,1,1,0,1,,94,2024-08-09T01:08:51Z,94.log,1.0.4,kondo,PS_firmware_top_2024_7_23.svf,,,FALSE,追試験,daughter boardは修理後のもの→修理完了 +324,90,B-0-2,1,1,1,1,1,1,1,,94,2024-08-09T01:08:51Z,94.log,1.0.4,kondo,PS_firmware_top_2024_7_23.svf,,,TRUE,"追試試験:daughter board載せ替えて試験 BCID fail, BCID 0:0:0, PP3, BCID shift, PP3",daughter boardは修理後のもの→修理完了 +316,87,B-1-3,1,1,1,1,1,0,1,,94,2024-08-09T01:08:51Z,94.log,1.0.4,kondo,PS_firmware_top_2024_7_23.svf,,,FALSE,追試試験:daughter board載せ替えて試験, +292,519,B-1-5,1,1,1,1,1,0,1,,94,2024-08-09T01:08:51Z,94.log,1.0.4,kondo,PS_firmware_top_2024_7_23.svf,,,TRUE,"追試験:BCID fail, BCID shift, PP5, BCID 0:0:0, PP5", +291,516,B-0-5,1,1,1,1,1,0,1,,94,2024-08-09T01:08:51Z,94.log,1.0.4,kondo,PS_firmware_top_2024_7_23.svf,,,FALSE,追試験, +255,1207,B-0-6,3,3,3,2,2,0,2,,94,2024-08-09T01:08:51Z,94.log,1.0.4,kondo,PS_firmware_top_2024_7_23.svf,,,TRUE,追試験:Si not locked, +233,1183,B-1-4,1,1,1,1,1,0,1,,94,2024-08-09T01:08:51Z,94.log,1.0.4,kondo,PS_firmware_top_2024_7_23.svf,,,FALSE,追試験:, +226,1177,B-1-7,1,1,1,1,1,0,1,,94,2024-08-09T01:08:51Z,94.log,1.0.4,kondo,PS_firmware_top_2024_7_23.svf,,,FALSE,追試験:, +210,1160,B-1-2,1,1,1,1,1,0,1,,94,2024-08-09T01:08:51Z,94.log,1.0.4,kondo,PS_firmware_top_2024_7_23.svf,,,FALSE,追試験:, +203,1155,B-0-7,1,1,1,1,2,0,2,,94,2024-08-09T01:08:51Z,94.log,1.0.4,kondo,PS_firmware_top_2024_7_23.svf,,,FALSE,追試験:, +198,998,B-1-8,1,1,1,1,2,0,2,,94,2024-08-09T01:08:51Z,94.log,1.0.4,kondo,PS_firmware_top_2024_7_23.svf,,,TRUE,"追試験:BCID fail, BCID shift, PP ASIC 6の15番目が必ずnextに立つ(メザニン載せ替え忘れ)", +184,89,B-1-1,1,1,1,1,1,0,1,,94,2024-08-09T01:08:51Z,94.log,1.0.4,kondo,PS_firmware_top_2024_7_23.svf,,,FALSE,追試試験:daughter board載せ替えて試験, +183,88,B-1-6,1,1,1,1,1,0,1,,94,2024-08-09T01:08:51Z,94.log,1.0.4,kondo,PS_firmware_top_2024_7_23.svf,,,FALSE,追試試験:daughter board載せ替えて試験, +165,1594,B-1-9,1,1,1,1,1,0,1,,94,2024-08-09T01:08:51Z,94.log,1.0.4,kondo,PS_firmware_top_2024_7_23.svf,,,FALSE,追試験:, +135,1535,B-0-8,1,1,1,1,1,0,1,,94,2024-08-09T01:08:51Z,94.log,1.0.4,kondo,PS_firmware_top_2024_7_23.svf,,,FALSE,追試験:, +64,78,B-0-9,1,1,1,1,1,0,1,,94,2024-08-09T01:08:51Z,94.log,1.0.4,kondo,PS_firmware_top_2024_7_23.svf,,,TRUE,追試験:10 times: no enough reset times for ACL(自立型制御機構), +299,525,,,,,,,,,,,,,,hashimoto,,,,TRUE,abnormal resistance (mother board), +280,507,,,,,,,,,,,,,,hashimoto,PS_firmware_top_2024_7_23.svf,,,TRUE,"abnormal resistance(mother board, C172とGND間で抵抗値を測って1k Ohm程度、メザニン (daughter board) で測っても同じ). svfplayer test is done (mistake). ", +236,1185,,,,,,,,,,,,,,Otsubo,,,,TRUE,abnormal. CN15コネクタピンにランド不良有り注意、試験はスキップ, +132,1534,,,,,,,,,,,,,,Yamaguchi,,,,TRUE,abnormal resistance(C172とGND間で抵抗値を測って550 Ohm程度、メザニン (daughter board) で測っても同じ → メザニンを修理したNo.57にしたら1 kOhm程度になった), +379,1029,B-0-1,1,1,1,1,2,10,2,,98,2024-09-10T03:49:53Z,98.log,1.0.4,otsubo,,,,TRUE,"10回reset足りず:28回,PP5,8→メザニン取り換え1029 -> 84", +401,1001,B-0-2,1,1,2,1,1,0,2,,98,2024-09-10T03:49:53Z,98.log,1.0.4,otsubo,,,,TRUE,"Power fail (3V3A [V] = 2.79 (thresholdは2.8 < I < 3.2)),BCID fail:5回,PP3,4", +403,1003,B-0-3,1,1,1,1,1,0,1,,98,2024-09-10T03:49:53Z,98.log,1.0.4,otsubo,,,,FALSE,, +405,1005,B-0-4,1,1,1,1,1,0,1,,98,2024-09-10T03:49:53Z,98.log,1.0.4,otsubo,,,,FALSE,, +407,1007,B-0-5,1,1,1,1,1,0,1,,98,2024-09-10T03:49:53Z,98.log,1.0.4,otsubo,,,,FALSE,, +409,1009,B-0-6,1,1,1,1,1,1,1,,98,2024-09-10T03:49:53Z,98.log,1.0.4,otsubo,,,,FALSE,, +411,1015,B-0-7,1,1,1,1,1,0,1,,98,2024-09-10T03:49:53Z,98.log,1.0.4,otsubo,,,,FALSE,, +413,1014,B-0-8,1,1,1,1,1,0,1,,98,2024-09-10T03:49:53Z,98.log,1.0.4,otsubo,,,,FALSE,JATHubのSDカードが破損したため、ログ消失。追試→SDカードからログを取り出せたので追試はなし。, +415,1016,B-0-9,1,1,1,1,1,0,1,,98,2024-09-10T03:49:53Z,98.log,1.0.4,otsubo,,,,FALSE,, +400,1013,B-1-1,1,1,1,1,1,1,1,,98,2024-09-10T03:49:53Z,98.log,1.0.4,otsubo,,,,FALSE,, +402,1002,B-1-2,1,1,1,1,1,0,1,,98,2024-09-10T03:49:53Z,98.log,1.0.4,otsubo,,,,FALSE,, +404,1004,B-1-3,1,1,1,1,1,0,1,,98,2024-09-10T03:49:53Z,98.log,1.0.4,otsubo,,,,FALSE,, +406,1006,B-1-4,1,1,1,1,1,0,1,,98,2024-09-10T03:49:53Z,98.log,1.0.4,otsubo,,,,FALSE,, +408,1008,B-1-5,1,1,1,1,1,0,1,,98,2024-09-10T03:49:53Z,98.log,1.0.4,otsubo,,,,FALSE,, +410,,B-1-6,1,1,1,1,1,0,1,,98,2024-09-10T03:49:53Z,98.log,1.0.4,otsubo,,,,TRUE,"10回reset足りず:37回,PP2,4", +412,1010,B-1-7,1,1,1,1,1,0,1,,98,2024-09-10T03:49:53Z,98.log,1.0.4,otsubo,,,,FALSE,, +414,1012,B-1-8,1,1,1,1,1,0,1,,98,2024-09-10T03:49:53Z,98.log,1.0.4,otsubo,,,,FALSE,, +416,1017,B-1-9,1,1,1,1,1,7,1,,98,2024-09-10T03:49:53Z,98.log,1.0.4,otsubo,,,,FALSE,, +417,1019,B-0-1,1,1,1,1,1,0,1,,100,2024-09-10T06:15:35Z,100.log,1.0.4,tagami,,,,FALSE,, +419,1021,B-0-2,1,1,1,1,1,0,1,,100,2024-09-10T06:15:35Z,100.log,1.0.4,tagami,,,,FALSE,, +421,1023,B-0-3,1,1,1,1,1,0,1,,100,2024-09-10T06:15:35Z,100.log,1.0.4,tagami,,,,FALSE,, +423,1025,B-0-4,1,1,1,1,1,1,1,,100,2024-09-10T06:15:35Z,100.log,1.0.4,tagami,,,,FALSE,, +425,1378,B-0-5,1,1,1,1,1,7,1,,100,2024-09-10T06:15:35Z,100.log,1.0.4,tagami,,,,TRUE,"10回reset足りず:67回,PP5,6 →メザニン取り換え1378 -> 82", +427,1380,B-0-6,1,1,1,1,1,0,1,,100,2024-09-10T06:15:35Z,100.log,1.0.4,tagami,,,,FALSE,, +429,1379,B-0-7,1,1,1,1,1,0,1,,100,2024-09-10T06:15:35Z,100.log,1.0.4,tagami,,,,FALSE,, +431,1381,B-0-8,1,1,1,1,1,0,1,,100,2024-09-10T06:15:35Z,100.log,1.0.4,tagami,,,,FALSE,, +433,1383,B-0-9,1,1,1,1,1,1,1,,100,2024-09-10T06:15:35Z,100.log,1.0.4,tagami,,,,FALSE,, +418,1018,B-1-1,1,1,1,1,1,1,1,,100,2024-09-10T06:15:35Z,100.log,1.0.4,tagami,,,,FALSE,, +420,1020,B-1-2,1,1,1,1,1,0,1,,100,2024-09-10T06:15:35Z,100.log,1.0.4,tagami,,,,FALSE,, +422,1022,B-1-3,1,1,1,1,1,0,1,,100,2024-09-10T06:15:35Z,100.log,1.0.4,tagami,,,,FALSE,, +424,1024,B-1-4,1,1,1,1,1,0,1,,100,2024-09-10T06:15:35Z,100.log,1.0.4,tagami,,,,FALSE,, +426,1376,B-1-5,1,1,1,1,1,0,1,,100,2024-09-10T06:15:35Z,100.log,1.0.4,tagami,,,,FALSE,, +428,1377,B-1-6,1,1,1,1,1,0,1,,100,2024-09-10T06:15:35Z,100.log,1.0.4,tagami,,,,FALSE,, +430,1382,B-1-7,1,1,1,1,1,0,1,,100,2024-09-10T06:15:35Z,100.log,1.0.4,tagami,,,,FALSE,, +432,1384,B-1-8,1,1,1,1,1,0,1,,100,2024-09-10T06:15:35Z,100.log,1.0.4,tagami,,,,FALSE,, +434,1386,B-1-9,1,1,1,1,1,0,1,,100,2024-09-10T06:15:35Z,100.log,1.0.4,tagami,,,,FALSE,, +435,1388,B-0-1,1,1,1,1,1,0,1,,103,2024-09-10T07:32:45Z,103.log,1.0.4,tagami,,,,FALSE,, +437,1390,B-0-2,1,1,2,1,1,4,2,,103,2024-09-10T07:32:45Z,103.log,1.0.4,tagami,,,,TRUE,Power fail (3V3A [V] = 2.79 (thresholdは2.8 < V < 3.2)), +439,1389,B-0-3,1,1,1,1,1,0,1,,103,2024-09-10T07:32:45Z,103.log,1.0.4,tagami,,,,FALSE,, +441,1391,B-0-4,1,1,1,1,1,0,1,,103,2024-09-10T07:32:45Z,103.log,1.0.4,tagami,,,,FALSE,, +443,1393,B-0-5,1,1,1,1,1,0,1,,103,2024-09-10T07:32:45Z,103.log,1.0.4,tagami,,,,FALSE,, +445,1397,B-0-6,1,1,1,1,1,0,1,,103,2024-09-10T07:32:45Z,103.log,1.0.4,tagami,,,,FALSE,, +447,1398,B-0-7,1,1,1,1,1,0,1,,103,2024-09-10T07:32:45Z,103.log,1.0.4,tagami,,,,FALSE,, +449,1399,B-0-8,1,1,1,1,1,0,1,,103,2024-09-10T07:32:45Z,103.log,1.0.4,tagami,,,,FALSE,, +451,,B-0-9,1,1,1,1,1,0,1,,103,2024-09-10T07:32:45Z,103.log,1.0.4,tagami,,,,TRUE,"10回reset足りず:16回,PP3", +436,1385,B-1-1,1,1,1,1,1,1,1,,103,2024-09-10T07:32:45Z,103.log,1.0.4,tagami,,,,FALSE,, +438,1387,B-1-2,1,1,1,1,1,0,1,,103,2024-09-10T07:32:45Z,103.log,1.0.4,tagami,,,,FALSE,, +440,1392,B-1-3,1,1,1,1,1,0,1,,103,2024-09-10T07:32:45Z,103.log,1.0.4,tagami,,,,FALSE,, +442,,B-1-4,1,1,1,2,1,0,2,,103,2024-09-10T07:32:45Z,103.log,1.0.4,tagami,,,,TRUE,clock test fail (0と1000が繰り返し), +444,1396,B-1-5,1,1,1,1,2,10,2,,103,2024-09-10T07:32:45Z,103.log,1.0.4,tagami,,,,FALSE,, +446,,B-1-6,1,1,1,1,1,0,1,,103,2024-09-10T07:32:45Z,103.log,1.0.4,tagami,,,,TRUE,"10回reset足りず:30回,PP4,5", +448,1400,B-1-7,1,1,1,1,1,0,1,,103,2024-09-10T07:32:45Z,103.log,1.0.4,tagami,,,,FALSE,, +450,1401,B-1-8,1,1,1,1,1,0,1,,103,2024-09-10T07:32:45Z,103.log,1.0.4,tagami,,,,FALSE,, +452,1402,B-1-9,1,1,1,1,1,0,1,,103,2024-09-10T07:32:45Z,103.log,1.0.4,tagami,,,,FALSE,, +453,1405,B-0-1,1,1,1,1,1,4,1,,105,2024-09-10T08:38:26Z,105.log,1.0.4,tagami,,,,FALSE,, +455,1406,B-0-2,1,1,1,1,1,0,1,,105,2024-09-10T08:38:26Z,105.log,1.0.4,tagami,,,,FALSE,, +457,1409,B-0-3,1,1,1,1,1,1,1,,105,2024-09-10T08:38:26Z,105.log,1.0.4,tagami,,,,FALSE,, +459,1411,B-0-4,1,1,1,1,1,0,1,,105,2024-09-10T08:38:26Z,105.log,1.0.4,tagami,,,,FALSE,, +461,1413,B-0-5,1,1,1,1,1,0,1,,105,2024-09-10T08:38:26Z,105.log,1.0.4,tagami,,,,FALSE,, +463,1415,B-0-6,1,1,1,1,1,0,1,,105,2024-09-10T08:38:26Z,105.log,1.0.4,tagami,,,,FALSE,, +465,1416,B-0-7,1,1,1,1,1,0,1,,105,2024-09-10T08:38:26Z,105.log,1.0.4,tagami,,,,FALSE,, +467,1421,B-0-8,1,1,1,1,1,1,1,,105,2024-09-10T08:38:26Z,105.log,1.0.4,tagami,,,,FALSE,, +469,1418,B-0-9,1,1,1,1,1,0,1,,105,2024-09-10T08:38:26Z,105.log,1.0.4,tagami,,,,FALSE,, +454,1404,B-1-1,1,1,2,2,2,0,2,,105,2024-09-10T08:38:26Z,105.log,1.0.4,tagami,,,,TRUE,"Power fail (ADC値), clock test fail (ずっと1000), reconfig_done=2なのに10回resetしない:100回(ASDデバッグ前なのでメザニンを取り替えるか考える前に追試必要)", +456,1407,B-1-2,1,1,1,1,1,0,1,,105,2024-09-10T08:38:26Z,105.log,1.0.4,tagami,,,,FALSE,, +458,1408,B-1-3,1,1,1,1,1,0,1,,105,2024-09-10T08:38:26Z,105.log,1.0.4,tagami,,,,FALSE,, +460,1410,B-1-4,1,1,1,2,1,2,2,,105,2024-09-10T08:38:26Z,105.log,1.0.4,tagami,,,,TRUE,clock test fail (0と1000が繰り返し), +462,1412,B-1-5,1,1,1,2,1,0,2,,105,2024-09-10T08:38:26Z,105.log,1.0.4,tagami,,,,TRUE,clock test fail (0と1000が繰り返し), +464,1414,B-1-6,1,1,1,1,2,10,2,,105,2024-09-10T08:38:26Z,105.log,1.0.4,tagami,,,,FALSE,, +466,1417,B-1-7,1,1,1,1,1,0,1,,105,2024-09-10T08:38:26Z,105.log,1.0.4,tagami,,,,FALSE,, +468,1419,B-1-8,1,1,1,1,1,0,1,,105,2024-09-10T08:38:26Z,105.log,1.0.4,tagami,,,,FALSE,, +470,1420,B-1-9,1,1,1,1,2,10,2,,105,2024-09-10T08:38:26Z,105.log,1.0.4,tagami,,,,FALSE,, +471,1423,B-0-1,1,1,1,1,1,0,1,,107,2024-09-10T10:03:58Z,107.log,1.0.4,tagami,,,,FALSE,, +473,1426,B-0-2,1,1,1,1,1,0,1,,107,2024-09-10T10:03:58Z,107.log,1.0.4,tagami,,,,FALSE,, +475,1428,B-0-3,1,1,1,1,1,0,1,,107,2024-09-10T10:03:58Z,107.log,1.0.4,tagami,,,,FALSE,, +477,1430,B-0-4,1,1,1,1,1,1,1,,107,2024-09-10T10:03:58Z,107.log,1.0.4,tagami,,,,FALSE,, +479,1429,B-0-5,1,1,1,1,1,0,1,,107,2024-09-10T10:03:58Z,107.log,1.0.4,tagami,,,,FALSE,, +481,1431,B-0-6,1,1,1,1,1,0,1,,107,2024-09-10T10:03:58Z,107.log,1.0.4,tagami,,,,FALSE,, +483,1436,B-0-7,1,1,1,1,1,0,1,,107,2024-09-10T10:03:58Z,107.log,1.0.4,tagami,,,,FALSE,, +485,1438,B-0-8,1,1,1,1,1,0,1,,107,2024-09-10T10:03:58Z,107.log,1.0.4,tagami,,,,FALSE,, +487,1437,B-0-9,1,1,1,1,1,0,1,,107,2024-09-10T10:03:58Z,107.log,1.0.4,tagami,,,,FALSE,, +472,1422,B-1-1,1,1,2,2,2,0,2,,107,2024-09-10T10:03:58Z,107.log,1.0.4,tagami,,,,TRUE,"Power fail (ADC値), clock test fail, clock test fail (ずっと1000), 牧田がASDデバッグしたものでRUN113以前はデバッグ前。RUN115はデバッグ後の100回試験", +474,1425,B-1-2,1,1,1,1,1,0,1,,107,2024-09-10T10:03:58Z,107.log,1.0.4,tagami,,,,FALSE,, +476,1424,B-1-3,1,1,1,1,1,0,1,,107,2024-09-10T10:03:58Z,107.log,1.0.4,tagami,,,,FALSE,, +478,1427,B-1-4,1,1,1,1,1,0,1,,107,2024-09-10T10:03:58Z,107.log,1.0.4,tagami,,,,FALSE,, +480,1432,B-1-5,1,1,1,1,1,0,1,,107,2024-09-10T10:03:58Z,107.log,1.0.4,tagami,,,,FALSE,, +482,1434,B-1-6,1,1,1,1,1,0,1,,107,2024-09-10T10:03:58Z,107.log,1.0.4,tagami,,,,FALSE,, +484,1433,B-1-7,1,1,1,1,1,0,1,,107,2024-09-10T10:03:58Z,107.log,1.0.4,tagami,,,,FALSE,, +486,1435,B-1-8,1,1,1,1,1,0,1,,107,2024-09-10T10:03:58Z,107.log,1.0.4,tagami,,,,FALSE,, +488,1440,B-1-9,1,1,1,1,1,0,1,,107,2024-09-10T10:03:58Z,107.log,1.0.4,tagami,,,,FALSE,, +489,1442,B-0-1,1,1,1,1,1,0,1,,117,2024-09-11T02:13:40Z,117.log,1.0.4,tagami,,,,FALSE,, +491,1441,B-0-2,1,1,1,1,1,0,1,,117,2024-09-11T02:13:40Z,117.log,1.0.4,tagami,,,,TRUE,"10回reset足りず:31回,PP5→メザニン取り替え1441 -> 85", +493,1446,B-0-3,1,1,1,1,1,0,1,,117,2024-09-11T02:13:40Z,117.log,1.0.4,tagami,,,,FALSE,, +495,1450,B-0-4,1,1,1,1,1,1,1,,117,2024-09-11T02:13:40Z,117.log,1.0.4,tagami,,,,FALSE,, +497,1447,B-0-5,1,1,1,1,1,0,1,,117,2024-09-11T02:13:40Z,117.log,1.0.4,tagami,,,,FALSE,, +499,1449,B-0-6,1,1,1,1,1,1,1,,117,2024-09-11T02:13:40Z,117.log,1.0.4,tagami,,,,FALSE,, +501,1303,B-0-7,1,1,1,1,1,0,1,,117,2024-09-11T02:13:40Z,117.log,1.0.4,tagami,,,,FALSE,, +503,1305,B-0-8,1,1,1,1,1,0,1,,117,2024-09-11T02:13:40Z,117.log,1.0.4,tagami,,,,FALSE,, +505,1306,B-0-9,1,1,1,1,1,0,1,,117,2024-09-11T02:13:40Z,117.log,1.0.4,tagami,,,,FALSE,, +490,1439,B-1-1,1,1,1,1,1,0,1,,117,2024-09-11T02:13:40Z,117.log,1.0.4,tagami,,,,FALSE,, +492,1444,B-1-2,1,1,1,1,1,0,1,,117,2024-09-11T02:13:40Z,117.log,1.0.4,tagami,,,,FALSE,, +494,1443,B-1-3,1,1,1,1,1,0,1,,117,2024-09-11T02:13:40Z,117.log,1.0.4,tagami,,,,FALSE,, +496,1445,B-1-4,1,1,1,1,1,0,1,,117,2024-09-11T02:13:40Z,117.log,1.0.4,tagami,,,,FALSE,, +498,1448,B-1-5,1,1,1,1,1,0,1,,117,2024-09-11T02:13:40Z,117.log,1.0.4,tagami,,,,FALSE,, +500,1301,B-1-6,1,1,1,1,1,1,1,,117,2024-09-11T02:13:40Z,117.log,1.0.4,tagami,,,,FALSE,, +502,1302,B-1-7,1,1,1,1,1,0,1,,117,2024-09-11T02:13:40Z,117.log,1.0.4,tagami,,,,FALSE,, +504,1304,B-1-8,1,1,1,1,1,0,1,,117,2024-09-11T02:13:40Z,117.log,1.0.4,tagami,,,,FALSE,, +506,1307,B-1-9,1,1,1,1,1,0,1,,117,2024-09-11T02:13:40Z,117.log,1.0.4,tagami,,,,FALSE,, +507,1308,B-0-1,1,1,1,1,1,2,1,,120,2024-09-11T03:41:25Z,120.log,1.0.4,tagami,,,,FALSE,, +509,1311,B-0-2,1,1,1,1,1,0,1,,120,2024-09-11T03:41:25Z,120.log,1.0.4,tagami,,,,FALSE,, +511,1313,B-0-3,1,1,1,1,1,0,1,,120,2024-09-11T03:41:25Z,120.log,1.0.4,tagami,,,,FALSE,, +513,1315,B-0-4,1,1,1,1,1,0,1,,120,2024-09-11T03:41:25Z,120.log,1.0.4,tagami,,,,FALSE,, +515,1316,B-0-5,1,1,1,1,1,1,1,,120,2024-09-11T03:41:25Z,120.log,1.0.4,tagami,,,,FALSE,, +517,1318,B-0-6,1,1,1,1,1,0,1,,120,2024-09-11T03:41:25Z,120.log,1.0.4,tagami,,,,FALSE,, +519,1321,B-0-7,1,1,1,1,1,0,1,,120,2024-09-11T03:41:25Z,120.log,1.0.4,tagami,,,,FALSE,, +521,1323,B-0-8,1,1,1,1,1,0,1,,120,2024-09-11T03:41:25Z,120.log,1.0.4,tagami,,,,FALSE,, +523,1325,B-0-9,1,1,1,1,1,0,1,,120,2024-09-11T03:41:25Z,120.log,1.0.4,tagami,,,,FALSE,, +508,1309,B-1-1,1,1,1,1,1,0,1,,120,2024-09-11T03:41:25Z,120.log,1.0.4,tagami,,,,FALSE,, +510,1310,B-1-2,1,1,1,1,1,3,1,,120,2024-09-11T03:41:25Z,120.log,1.0.4,tagami,,,,FALSE,, +512,1312,B-1-3,1,1,1,1,1,0,1,,120,2024-09-11T03:41:25Z,120.log,1.0.4,tagami,,,,FALSE,, +514,1314,B-1-4,1,1,1,1,1,3,1,,120,2024-09-11T03:41:25Z,120.log,1.0.4,tagami,,,,FALSE,, +516,1317,B-1-5,1,1,1,1,1,0,1,,120,2024-09-11T03:41:25Z,120.log,1.0.4,tagami,,,,FALSE,, +518,1319,B-1-6,1,1,1,1,1,0,1,,120,2024-09-11T03:41:25Z,120.log,1.0.4,tagami,,,,TRUE,"10回reset足りず:100回,PP1,5", +520,1320,B-1-7,1,1,1,1,1,0,1,,120,2024-09-11T03:41:25Z,120.log,1.0.4,tagami,,,,FALSE,, +522,1322,B-1-8,1,1,1,1,1,1,1,,120,2024-09-11T03:41:25Z,120.log,1.0.4,tagami,,,,FALSE,, +524,1324,B-1-9,1,1,1,1,1,0,1,,120,2024-09-11T03:41:25Z,120.log,1.0.4,tagami,,,,FALSE,, +525,1328,B-0-1,1,1,1,1,2,10,2,,122,2024-09-11T05:04:29Z,122.log,1.0.4,kmaki,,,,TRUE,"10回reset足りず:99回,PP2,5", +527,1330,B-0-2,1,1,1,1,1,0,1,,122,2024-09-11T05:04:29Z,122.log,1.0.4,kmaki,,,,FALSE,, +529,1329,B-0-3,1,1,1,1,1,0,1,,122,2024-09-11T05:04:29Z,122.log,1.0.4,kmaki,,,,FALSE,, +531,1331,B-0-4,1,1,1,1,1,0,1,,122,2024-09-11T05:04:29Z,122.log,1.0.4,kmaki,,,,FALSE,, +533,1333,B-0-5,1,1,1,1,1,0,1,,122,2024-09-11T05:04:29Z,122.log,1.0.4,kmaki,,,,FALSE,, +535,1338,B-0-6,1,1,1,1,1,0,1,,122,2024-09-11T05:04:29Z,122.log,1.0.4,kmaki,,,,FALSE,, +537,1340,B-0-7,1,1,1,1,1,0,1,,122,2024-09-11T05:04:29Z,122.log,1.0.4,kmaki,,,,FALSE,, +539,1339,B-0-8,1,1,1,1,1,0,1,,122,2024-09-11T05:04:29Z,122.log,1.0.4,kmaki,,,,FALSE,, +541,1342,B-0-9,1,1,1,1,1,0,1,,122,2024-09-11T05:04:29Z,122.log,1.0.4,kmaki,,,,FALSE,, +526,1326,B-1-1,1,1,1,1,1,0,1,,122,2024-09-11T05:04:29Z,122.log,1.0.4,kmaki,,,,FALSE,, +528,1327,B-1-2,1,1,1,1,1,0,1,,122,2024-09-11T05:04:29Z,122.log,1.0.4,kmaki,,,,FALSE,, +530,1332,B-1-3,1,1,1,1,1,3,1,,122,2024-09-11T05:04:29Z,122.log,1.0.4,kmaki,,,,FALSE,, +532,1334,B-1-4,1,1,1,1,1,0,1,,122,2024-09-11T05:04:29Z,122.log,1.0.4,kmaki,,,,FALSE,, +534,1336,B-1-5,1,1,1,1,1,0,1,,122,2024-09-11T05:04:29Z,122.log,1.0.4,kmaki,,,,FALSE,, +536,1335,B-1-6,1,1,1,1,1,0,1,,122,2024-09-11T05:04:29Z,122.log,1.0.4,kmaki,,,,FALSE,, +538,1337 -> 83,B-1-7,1,1,1,1,1,0,1,,122,2024-09-11T05:04:29Z,122.log,1.0.4,kmaki,,,,TRUE,抵抗値異常だが試験実行。抵抗値異常のメザニンカードを取り替え1337 -> 83, +540,1341,B-1-8,1,1,1,1,1,9,1,,122,2024-09-11T05:04:29Z,122.log,1.0.4,kmaki,,,,FALSE,, +542,1344,B-1-9,1,1,1,1,1,0,1,,122,2024-09-11T05:04:29Z,122.log,1.0.4,kmaki,,,,FALSE,, +543,1343,B-0-1,1,1,1,1,1,0,1,,126,2024-09-11T06:30:42Z,126.log,1.0.4,tagami,,,,FALSE,, +545,1348,B-0-2,2,1,2,1,2,10,2,,126,2024-09-11T06:30:42Z,126.log,1.0.4,tagami,,,,TRUE,Power fail (3V3A [V] = 2.78 (thresholdは2.8 < V < 3.2)), +547,1350,B-0-3,1,1,1,1,1,0,1,,126,2024-09-11T06:30:42Z,126.log,1.0.4,tagami,,,,FALSE,, +548,1347,B-0-4,1,1,1,1,1,0,1,,126,2024-09-11T06:30:42Z,126.log,1.0.4,tagami,,,,TRUE,"BCID fail:5回,PP7,8→メザニン取り換え", +550,1351,B-0-5,1,1,1,1,1,0,1,,126,2024-09-11T06:30:42Z,126.log,1.0.4,tagami,,,,FALSE,, +552,1352,B-0-6,1,1,1,1,1,4,1,,126,2024-09-11T06:30:42Z,126.log,1.0.4,tagami,,,,FALSE,, +554,1354,B-0-7,1,1,1,1,1,0,1,,126,2024-09-11T06:30:42Z,126.log,1.0.4,tagami,,,,FALSE,, +556,1356,B-0-8,1,1,1,1,1,0,1,,126,2024-09-11T06:30:42Z,126.log,1.0.4,tagami,,,,FALSE,, +558,1359,B-0-9,1,1,1,1,1,0,1,,126,2024-09-11T06:30:42Z,126.log,1.0.4,tagami,,,,FALSE,, +544,1346,B-1-1,1,1,1,1,1,0,1,,126,2024-09-11T06:30:42Z,126.log,1.0.4,tagami,,,,FALSE,, +546,1345,B-1-2,1,1,1,1,1,1,1,,126,2024-09-11T06:30:42Z,126.log,1.0.4,tagami,,,,FALSE,, +48,65,B-1-3,1,1,1,1,1,0,1,,126,2024-09-11T06:30:42Z,126.log,1.0.4,tagami,,,,FALSE,ガンマ線照射後の再測定, +549,1349,B-1-4,1,1,1,1,2,10,2,,126,2024-09-11T06:30:42Z,126.log,1.0.4,tagami,,,,FALSE,, +551,1353,B-1-5,1,1,1,1,1,0,1,,126,2024-09-11T06:30:42Z,126.log,1.0.4,tagami,,,,FALSE,, +553,1355,B-1-6,1,1,1,1,1,0,1,,126,2024-09-11T06:30:42Z,126.log,1.0.4,tagami,,,,FALSE,, +555,1357,B-1-7,1,1,1,1,1,1,1,,126,2024-09-11T06:30:42Z,126.log,1.0.4,tagami,,,,FALSE,, +557,1361,B-1-8,1,1,1,1,1,0,1,,126,2024-09-11T06:30:42Z,126.log,1.0.4,tagami,,,,FALSE,, +559,1358,B-1-9,1,1,1,1,1,0,1,,126,2024-09-11T06:30:42Z,126.log,1.0.4,tagami,,,,FALSE,, +560,1360,B-0-1,1,1,1,1,1,0,1,,128,2024-09-11T07:32:48Z,128.log,1.0.4,tagami,,,,FALSE,, +562,1362,B-0-2,1,1,2,1,1,0,2,,128,2024-09-11T07:32:48Z,128.log,1.0.4,tagami,,,,TRUE,Power fail (3V3A [V] = 2.76 (thresholdは2.8 < V < 3.2)), +564,1364,B-0-3,1,1,1,1,1,0,1,,128,2024-09-11T07:32:48Z,128.log,1.0.4,tagami,,,,FALSE,, +566,1366,B-0-4,1,1,1,1,1,1,1,,128,2024-09-11T07:32:48Z,128.log,1.0.4,tagami,,,,FALSE,, +568,1369,B-0-5,1,1,1,1,1,0,1,,128,2024-09-11T07:32:48Z,128.log,1.0.4,tagami,,,,FALSE,, +570,1373,B-0-6,1,1,1,1,1,0,1,,128,2024-09-11T07:32:48Z,128.log,1.0.4,tagami,,,,FALSE,, +572,1370,B-0-7,1,1,1,1,1,0,1,,128,2024-09-11T07:32:48Z,128.log,1.0.4,tagami,,,,FALSE,, +574,1375,B-0-8,1,1,1,1,1,0,1,,128,2024-09-11T07:32:48Z,128.log,1.0.4,tagami,,,,FALSE,, +576,826,B-0-9,1,1,1,1,1,0,1,,128,2024-09-11T07:32:48Z,128.log,1.0.4,tagami,,,,FALSE,, +561,1363,B-1-1,1,1,1,1,1,1,1,,128,2024-09-11T07:32:48Z,128.log,1.0.4,tagami,,,,FALSE,, +563,1365,B-1-2,1,1,1,1,1,0,1,,128,2024-09-11T07:32:48Z,128.log,1.0.4,tagami,,,,FALSE,, +565,1367,B-1-3,1,1,1,1,1,0,1,,128,2024-09-11T07:32:48Z,128.log,1.0.4,tagami,,,,FALSE,, +567,1368,B-1-4,1,1,1,1,1,0,1,,128,2024-09-11T07:32:48Z,128.log,1.0.4,tagami,,,,FALSE,, +569,1371,B-1-5,1,1,1,1,1,0,1,,128,2024-09-11T07:32:48Z,128.log,1.0.4,tagami,,,,FALSE,, +571,1372,B-1-6,1,1,1,1,1,1,1,,128,2024-09-11T07:32:48Z,128.log,1.0.4,tagami,,,,FALSE,, +573,1374,B-1-7,1,1,1,1,1,0,1,,128,2024-09-11T07:32:48Z,128.log,1.0.4,tagami,,,,FALSE,, +575,828,B-1-8,1,1,1,1,1,0,1,,128,2024-09-11T07:32:48Z,128.log,1.0.4,tagami,,,,FALSE,, +577,829,B-1-9,1,1,1,1,1,0,1,,128,2024-09-11T07:32:48Z,128.log,1.0.4,tagami,,,,FALSE,, +578,827,B-0-1,1,1,1,1,1,0,1,,130,2024-09-11T08:25:46Z,130.log,1.0.4,muzuochi,,,,FALSE,, +580,832,B-0-2,1,1,2,1,1,0,2,,130,2024-09-11T08:25:46Z,130.log,1.0.4,muzuochi,,,,TRUE,Power fail (3V3A [V] = 2.76 (thresholdは2.8 < V < 3.2)), +582,833,B-0-3,1,1,1,1,1,0,1,,130,2024-09-11T08:25:46Z,130.log,1.0.4,muzuochi,,,,FALSE,, +584,835,B-0-4,1,1,1,1,1,0,1,,130,2024-09-11T08:25:46Z,130.log,1.0.4,muzuochi,,,,FALSE,, +586,842,B-0-5,1,1,1,1,1,0,1,,130,2024-09-11T08:25:46Z,130.log,1.0.4,muzuochi,,,,FALSE,, +588,841,B-0-6,1,1,1,1,1,0,1,,130,2024-09-11T08:25:46Z,130.log,1.0.4,muzuochi,,,,FALSE,, +590,838,B-0-7,1,1,1,1,1,0,1,,130,2024-09-11T08:25:46Z,130.log,1.0.4,muzuochi,,,,FALSE,, +592,843,B-0-8,1,1,1,1,1,0,1,,130,2024-09-11T08:25:46Z,130.log,1.0.4,muzuochi,,,,FALSE,, +594,845,B-0-9,1,1,1,1,1,0,1,,130,2024-09-11T08:25:46Z,130.log,1.0.4,muzuochi,,,,FALSE,, +579,830,B-1-1,1,1,1,1,1,1,1,,130,2024-09-11T08:25:46Z,130.log,1.0.4,muzuochi,,,,FALSE,, +581,831,B-1-2,1,1,1,1,1,0,1,,130,2024-09-11T08:25:46Z,130.log,1.0.4,muzuochi,,,,FALSE,, +583,834,B-1-3,1,1,1,1,1,0,1,,130,2024-09-11T08:25:46Z,130.log,1.0.4,muzuochi,,,,FALSE,, +585,836,B-1-4,1,1,1,1,1,0,1,,130,2024-09-11T08:25:46Z,130.log,1.0.4,muzuochi,,,,FALSE,, +587,840,B-1-5,1,1,1,1,1,0,1,,130,2024-09-11T08:25:46Z,130.log,1.0.4,muzuochi,,,,FALSE,, +589,839,B-1-6,1,1,1,1,1,1,1,,130,2024-09-11T08:25:46Z,130.log,1.0.4,muzuochi,,,,FALSE,, +591,837,B-1-7,1,1,1,1,1,0,1,,130,2024-09-11T08:25:46Z,130.log,1.0.4,muzuochi,,,,FALSE,, +593,844,B-1-8,1,1,1,1,1,0,1,,130,2024-09-11T08:25:46Z,130.log,1.0.4,muzuochi,,,,FALSE,, +595,846,B-1-9,1,1,1,1,1,0,1,,130,2024-09-11T08:25:46Z,130.log,1.0.4,muzuochi,,,,FALSE,, +379,84,B-0-1,1,1,1,1,1,0,1,,132,2024-09-12T02:31:20Z,132.log,1.0.4,tagami,,,,FALSE,追試:, +562,1362,B-0-2,1,1,1,1,1,1,1,,132,2024-09-12T02:31:20Z,132.log,1.0.4,tagami,,,,FALSE,追試:, +491,85,B-0-3,1,1,1,1,1,0,1,,132,2024-09-12T02:31:20Z,132.log,1.0.4,tagami,,,,FALSE,追試:, +545,1348,B-0-4,1,1,1,1,1,1,1,,132,2024-09-12T02:31:20Z,132.log,1.0.4,tagami,,,,FALSE,追試:, +538,83,B-0-5,1,1,1,1,2,0,2,,132,2024-09-12T02:31:20Z,132.log,1.0.4,tagami,,,,FALSE,"追試:BCID fail:100回,PP8→メザニン取り換え(2回目)", +401,1001,B-0-6,1,1,1,1,1,0,1,,132,2024-09-12T02:31:20Z,132.log,1.0.4,tagami,,,,FALSE,追試:, +350,81,B-0-7,1,1,1,1,1,0,1,,132,2024-09-12T02:31:20Z,132.log,1.0.4,tagami,,,,FALSE,追試:, +460,1410,B-0-8,1,1,1,1,1,0,1,,132,2024-09-12T02:31:20Z,132.log,1.0.4,tagami,,,,FALSE,追試:, +589,839,B-0-9,1,1,1,1,1,1,1,,132,2024-09-12T02:31:20Z,132.log,1.0.4,tagami,,,,FALSE,追試:, +454,1404,B-1-1,1,1,1,1,1,1,1,,132,2024-09-12T02:31:20Z,132.log,1.0.4,tagami,,,,FALSE,追試:, +425,82,B-1-2,1,1,1,1,1,0,1,,132,2024-09-12T02:31:20Z,132.log,1.0.4,tagami,,,,FALSE,追試:, +580,832,B-1-3,1,1,1,1,1,0,1,,132,2024-09-12T02:31:20Z,132.log,1.0.4,tagami,,,,FALSE,追試:, +442,1394,B-1-4,1,1,1,1,1,1,1,,132,2024-09-12T02:31:20Z,132.log,1.0.4,tagami,,,,FALSE,追試:, +462,1412,B-1-5,1,1,1,1,1,0,1,,132,2024-09-12T02:31:20Z,132.log,1.0.4,tagami,,,,FALSE,追試:, +437,1390,B-1-6,1,1,1,1,1,5,1,,132,2024-09-12T02:31:20Z,132.log,1.0.4,tagami,,,,FALSE,追試:, +472,1422,B-1-7,1,1,1,1,1,0,1,,132,2024-09-12T02:31:20Z,132.log,1.0.4,tagami,,,,FALSE,追試:, +595,846,B-1-8,1,1,1,1,1,0,1,,132,2024-09-12T02:31:20Z,132.log,1.0.4,tagami,,,,FALSE,追試:, +579,830,B-1-9,1,1,1,1,1,0,1,,132,2024-09-12T02:31:20Z,132.log,1.0.4,tagami,,,,FALSE,追試:, \ No newline at end of file diff --git a/test/runtests.jl b/test/runtests.jl new file mode 100644 index 0000000..8b68549 --- /dev/null +++ b/test/runtests.jl @@ -0,0 +1,28 @@ +using Test +using PSBoardDataBase +using CSV, DataFrames + +true || include("../src/PSBoardDataBase.jl") + +@testset "PSBoardDataBase" begin + dbpath = tempname() + db = PSBoardDataBase.create_database(dbpath) + @info "" db + + @test PSBoardDataBase.insert_qaqc_campaign_id(db) |> isnothing + @test PSBoardDataBase.insert_qaqc_positions(db) |> isnothing + + single_result_df = + CSV.read("input/PS board QAQC Data Base - 本番1回試験・追加検証試験.csv", DataFrame) + runlist_table = CSV.read("input/PS board QAQC Data Base - RUNLIST.csv", DataFrame) + + @test PSBoardDataBase.prepare_single_result_df(single_result_df) isa DataFrame + + @test PSBoardDataBase.add_psboard_ids(db, single_result_df) |> isnothing + @test PSBoardDataBase.add_qaqc_runlist(db, runlist_table) |> isnothing + + @test PSBoardDataBase.add_qaqc_single_result(db, single_result_df, runlist_table) |> + isnothing + + run(`sqlitebrowser $dbpath`) +end