Fix reading the disableTss option

This commit is contained in:
Chaoguang Lin 2021-09-03 12:47:02 -07:00
parent f7002e2a66
commit b9e4bb7217
1 changed files with 1 additions and 1 deletions

View File

@ -242,7 +242,7 @@ class TestConfig {
sscanf(value.c_str(), "%d", &maxTLogVersion);
}
if (attrib == "disableTss") {
sscanf(value.c_str(), "%d", &disableTss);
disableTss = strcmp(value.c_str(), "true") == 0;
}
if (attrib == "restartInfoLocation") {
isFirstTestInRestart = true;