-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgraded the Builder build system to compile regression tests and mad…
…e a program for running the tests with multiple threads.
- Loading branch information
Showing
28 changed files
with
676 additions
and
151 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
cppcheck . --enable=all | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Flags here will be inherited by each test. | ||
CompilerFlag "-std=c++14" | ||
Debug | ||
Supressed = 1 | ||
#Graphics | ||
#Sound | ||
Import "../DFPSR/DFPSR.DsrHead" | ||
|
||
# Compile and run each source file ending with Test.cpp in tests as its own project. | ||
# All settings are inherited from the caller when using source files as projects. | ||
Projects from "*Test.cpp" in "tests" | ||
|
||
# TODO: | ||
# * Allow creating scopes for temporary settings, so that a stack keeps track of which | ||
# settings were local to the scope and should be erased when leaving the scope. | ||
# * Or just make a method for clearing all local settings while keeping external settings such as target platform. | ||
|
||
# Flags here will not be inherited by the tests. | ||
Supressed = 0 | ||
|
||
# Enable to run faster by skipping compilation of testCaller when it already exists. | ||
#SkipIfBinaryExists | ||
|
||
# Compile the program that will run all the tests | ||
Crawl "testCaller.cpp" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.