-
Notifications
You must be signed in to change notification settings - Fork 273
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replace new-smt-backend
tag with inverted no-new-smt
tag
#8002
Replace new-smt-backend
tag with inverted no-new-smt
tag
#8002
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## develop #8002 +/- ##
===========================================
+ Coverage 78.80% 79.09% +0.29%
===========================================
Files 1701 1699 -2
Lines 196462 196508 +46
===========================================
+ Hits 154819 155433 +614
+ Misses 41643 41075 -568 ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This causes my browser to grind to a sluggish crawl so I only checked the first 35% or so. I think the make and cmake files need to be checked and corrected in a few places (at least regarding comments).
@@ -30,11 +30,11 @@ add_test_pl_profile( | |||
"CORE" | |||
) | |||
|
|||
# If `-I` (include flag) is passed, test.pl will run only the tests matching the label following it. | |||
# If `-I` (include flag) is passed, test.pl will exclude the tests matching the label following it. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Comment is now wrong.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed. The explanation in the comment is now updated in all 3 places.
@@ -5,11 +5,11 @@ if(Z3_EXISTS) | |||
"$<TARGET_FILE:cbmc>" | |||
) | |||
|
|||
# If `-I` (include flag) is passed, test.pl will run only the tests matching the label following it. | |||
# If `-X` (include flag) is passed, test.pl will exclude the tests matching the label following it. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Comment is wrong
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have fixed the text in the brackets.
add_test_pl_profile( | ||
"cbmc-primitives-new-smt-backend" | ||
"$<TARGET_FILE:cbmc> --incremental-smt2-solver 'z3 --smt2 -in'" | ||
"-I;new-smt-backend;-s;new-smt-backend" | ||
"-X;no-new-smt;-s;new-smt-backend" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks off, but I don't recall the exact syntax here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not convinced there is anything wrong here? We want to flip to selectively excluding rather than selectively including tests.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I clearly was not really clear. The change from -I
to -X
is correct, but there remains the -s;new-smt-backend
which looks off to me. That said, I don't recall the syntax (and should check).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess that's ok for it's an arbitrary string to disambiguate log files:
$ regression/test.pl --help
[...]
-s <suffix> append <suffix> to all output and log files. Enables concurrent
testing of the same desc file with different commands or options,
as runs with different suffixes will operate independently and keep
independent logs.
[...]
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As per the previous comment the -s
disambiguates log files. So updating it to contain "no" for example would seem incorrect/misleading. It would match the tag but appear in the file name of output files where the "no" tag is not present. @TGWDB Ok if I consider this comment to be resolved?
regression/cbmc/CMakeLists.txt
Outdated
@@ -30,11 +30,11 @@ add_test_pl_profile( | |||
"CORE" | |||
) | |||
|
|||
# If `-I` (include flag) is passed, test.pl will run only the tests matching the label following it. | |||
# If `-X` (include flag) is passed, test.pl will exclude the tests matching the label following it. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Comment is wrong
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have fixed the text in the brackets.
add_test_pl_profile( | ||
"cbmc-new-smt-backend" | ||
"$<TARGET_FILE:cbmc> --incremental-smt2-solver 'z3 --smt2 -in'" | ||
"${gcc_only_string}-I;new-smt-backend;-s;new-smt-backend" | ||
"${gcc_only_string}-X;no-new-smt;-s;new-smt-backend" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Check this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here: I think this is ok?!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See previous comments on the -s
flag.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -1,4 +1,4 @@ | |||
CORE new-smt-backend |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit pick (here and elsewhere): for some reason there are two spaces here, and the (automated) changes leave one of them behind, meaning there is a space at the end of the line.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, when the requested changes are merged
This makes it somewhat more straight forward to find tests where the new smt backend is not currently run. It also helps with testing with the new smt support on new tests by default. The tags in the `.desc` files are flipped using a one-off python script. I am including it here below in the commit message body rather than in a separate commit as it is intended for a singular usage and it may be more straight forward to review the script than the `.desc` file updates. ``` import os import sys from pathlib import Path def usage(): print("Usage " + sys.argv[0] + " [directory]") print("Processes all test tags within a [directory].") def update_file(file_path) -> bool: with file_path.open("rt") as file: lines = file.readlines() if len(lines) == 0: print("File " + file_path + " is empty") return False if "CORE" not in lines[0]: return False if " new-smt-backend" not in lines[0] and " no-new-smt" not in lines[0]: lines[0] = lines[0].replace("\n", " no-new-smt\n") else: lines[0] = lines[0].replace(" new-smt-backend", "") with file_path.open("wt") as file: file.writelines(lines) return True def main() -> int: if len(sys.argv) != 2: usage() return os.EX_USAGE directory = Path(sys.argv[1]) if not directory.is_absolute(): directory = Path(os.getcwd()) / directory print("Running against directory " + os.fspath(directory)) if not directory.is_dir(): print("Error - This is not a directory.") return os.EX_IOERR files = directory.glob("*/*.desc") tests_updated = 0 for file_path in files: if not file_path.is_file(): print(os.fspath(file_path) + " was expected to be a file but is " "not a file") continue if update_file(file_path): tests_updated += 1 if tests_updated == 0: print("Error - No tests updated") return os.EX_NOTFOUND print(str(tests_updated) + " tests updated.") return os.EX_OK if __name__ == '__main__': sys.exit(main()) ```
In order to make the tags in the previous commit work as expected.
22102cc
to
4452558
Compare
@TGWDB I have addressed your comments and separated the PR into 2 commits for ease of review. All commits will still have all tests pass. The first commit will cause the smt tests not to run and the second will re-instate them. |
I think these were introduced in the preceding commit due to trailing spaces on end of lines before this PR. Python script for the update - ``` import os import sys from pathlib import Path def usage(): print("Usage " + sys.argv[0] + " [directory]") print("Processes all test tags within a [directory].") def update_file(file_path) -> bool: with file_path.open("rt") as file: lines = file.readlines() if len(lines) == 0: print("File " + file_path + " is empty") return False if " " not in lines[0]: return False lines[0] = lines[0].replace(" ", " ") with file_path.open("wt") as file: file.writelines(lines) return True def main() -> int: if len(sys.argv) != 2: usage() return os.EX_USAGE directory = Path(sys.argv[1]) if not directory.is_absolute(): directory = Path(os.getcwd()) / directory print("Running against directory " + os.fspath(directory)) if not directory.is_dir(): print("Error - This is not a directory.") return os.EX_IOERR files = directory.glob("*/*.desc") tests_updated = 0 for file_path in files: if not file_path.is_file(): print(os.fspath(file_path) + " was expected to be a file " "but is not a file") continue if update_file(file_path): tests_updated += 1 if tests_updated == 0: print("Error - No tests updated") return os.EX_NOTFOUND print(str(tests_updated) + " tests updated.") return os.EX_OK if __name__ == '__main__': sys.exit(main()) ```
This makes it somewhat more straight forward to find tests where the new smt backend is not currently run. It also helps with testing with the new smt support on new tests by default.
The tags in the
.desc
files are flipped using a one-off python script. I am including it here below rather than in a separate commit as it is intended for a singular usage and it may be more straight forward to review the script than the.desc
file updates.