Skip to content

Commit

Permalink
Investigating intermittent failure in BiblioSpec "tiny-msf-keep" test
Browse files Browse the repository at this point in the history
  • Loading branch information
nickshulman committed Jan 22, 2025
1 parent ff0ab9f commit 261d295
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions pwiz_tools/BiblioSpec/src/MSFReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ namespace BiblioSpec
if (!msfFile_) {
throw BlibException(true, "Couldn't open '%s'.", msfName_);
}
Verbosity::debug("Opened file '%s'. File size: %ju", msfName_, bfs::file_size(msfName_));
// Get the schema version
sqlite3_stmt* statement = getStmt("SELECT SoftwareVersion FROM SchemaInfo");
if (hasNext(&statement)) {
Expand Down
2 changes: 1 addition & 1 deletion pwiz_tools/BiblioSpec/tests/ExecuteBlib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ int executeBlib(const vector<string>& argv)
// listed alphabetically and then doesn't pass them in a stable order
// hunt down the components separately: executable, options, inputs, lib
string command; // must contain BlibBuild, BlibFilter, BlibSearch, BlibToMs2
string options; // must start with '-'
string options = "-v detail "; // must start with '-'
vector<string> libNames; // collect so we can sort them
const char* libExt = ".blib";
const char* pdbExt = ".pdb";
Expand Down

0 comments on commit 261d295

Please sign in to comment.