1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
From: Bastian Germann <bastiangermann@fishpost.de>
Date: Sat, 13 Feb 2021 15:08:48 +0100
Bug: https://github.com/silnrsi/grcompiler/issues/36
Subject: Prevent year-sensitive (2020) test
The PigLatinTest_v2 benchmark file has a timestamp with 2020 on it,
which makes the test fail in 2021. Exclude it from being run.
---
test/GrcRegressionTest/CMakeLists.txt | 1 -
1 file changed, 1 deletion(-)
diff --git a/test/GrcRegressionTest/CMakeLists.txt b/test/GrcRegressionTest/CMakeLists.txt
index 4aaf87b..cc86735 100644
--- a/test/GrcRegressionTest/CMakeLists.txt
+++ b/test/GrcRegressionTest/CMakeLists.txt
@@ -66,6 +66,5 @@ endfunction()
compile_test(SchTest 4 "")
compile_test(CharisTest 2 "")
-compile_test(PigLatinTest_v2 2 "PigLatin GrRegTest V2" -p)
compile_test(PigLatinTest_v3 3 "")
compile_test(PadaukTest_v3 3 "" -offsets -p)
|