-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Made yw-cli-tests run with gcc and ccputest.
- Loading branch information
1 parent
6007a94
commit bfe702a
Showing
6 changed files
with
21 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
include ../yw.setup.makefile | ||
include ../cpp.setup.makefile | ||
include ../tests.setup.makefile | ||
|
||
TESTS = $(wildcard $(YW_TEST_DIR)/yw-cli-tests/*.cpp) | ||
|
||
include ../test.targets.makefile |
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,7 @@ | ||
#include "CppUTest/CommandLineTestRunner.h" | ||
|
||
int main(int ac, char** av) | ||
{ | ||
MemoryLeakWarningPlugin::turnOffNewDeleteOverloads(); | ||
return CommandLineTestRunner::RunAllTests(ac, av); | ||
} |
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 |
---|---|---|
|
@@ -7,5 +7,5 @@ | |
#include <iostream> | ||
#include <sstream> | ||
|
||
#include "yw_test.h" | ||
#include "yw_config.h" | ||
#include "yw_test.h" |