-
Notifications
You must be signed in to change notification settings - Fork 75
v0.2.49..v0.2.50 changeset ScriptTestSuite.cpp
Garret Voltz edited this page Nov 6, 2019
·
1 revision
diff --git a/hoot-test/src/main/cpp/hoot/test/ScriptTestSuite.cpp b/hoot-test/src/main/cpp/hoot/test/ScriptTestSuite.cpp
index ae3922b..9b5daae 100644
--- a/hoot-test/src/main/cpp/hoot/test/ScriptTestSuite.cpp
+++ b/hoot-test/src/main/cpp/hoot/test/ScriptTestSuite.cpp
@@ -38,7 +38,7 @@ namespace hoot
{
ScriptTestSuite::ScriptTestSuite(QString dir, bool printDiff, double waitTimeSec,
- bool hideDisableTests) :
+ bool hideDisableTests, bool suppressFailureDetail) :
TestSuite(dir.toStdString())
{
QDir d(dir);
@@ -81,7 +81,7 @@ TestSuite(dir.toStdString())
if (!ignore)
{
QString path = d.absoluteFilePath(files[i]);
- addTest(new ScriptTest(path, printDiff, waitTimeSec * 1000));
+ addTest(new ScriptTest(path, printDiff, suppressFailureDetail, waitTimeSec * 1000));
}
}
}