aboutsummaryrefslogtreecommitdiffstats
path: root/vsperf
diff options
context:
space:
mode:
Diffstat (limited to 'vsperf')
-rwxr-xr-xvsperf5
1 files changed, 4 insertions, 1 deletions
diff --git a/vsperf b/vsperf
index 71ca2eb0..63913c77 100755
--- a/vsperf
+++ b/vsperf
@@ -326,8 +326,11 @@ def main():
settings.load_from_dir('conf')
+ performance_test = True
+
# Load non performance/integration tests
if args['run_integration']:
+ performance_test = False
settings.load_from_dir('conf/integration')
# load command line parameters first in case there are settings files
@@ -466,7 +469,7 @@ def main():
all_tests = []
for cfg in testcases:
try:
- all_tests.append(TestCase(cfg, results_path))
+ all_tests.append(TestCase(cfg, results_path, performance_test))
except (Exception) as _:
logger.exception("Failed to create test: %s",
cfg.get('Name', '<Name not set>'))