Fresco/test/syunit syn2cc.py,1.1,1.2
Nathaniel Smith <[email protected]>
| Newsgroups | gmane.comp.video.fresco.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvs/fresco/Fresco/test/syunit
In directory purcel:/tmp/cvs-serv17657/syunit
Modified Files:
syn2cc.py
Log Message:
Oops, I still had the old, provisional name for the library in the source
code; replace "Fresco_Test" with "SyUnit" everywhere.
Index: syn2cc.py
===================================================================
RCS file: /cvs/fresco/Fresco/test/syunit/syn2cc.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- syn2cc.py 19 Feb 2003 20:07:22 -0000 1.1
+++ syn2cc.py 19 Feb 2003 20:40:15 -0000 1.2
@@ -29,7 +29,7 @@
test_class_root nor have the @is_test_class tag, but do inherit from something
that does have the @is_test_class tag.
"""
-test_class_root = ("Fresco_Test", "TestCase")
+test_class_root = ("SyUnit", "TestCase")
test_file_tmpl = """\
/* This file was automatically generated. Do not edit! */
@@ -41,8 +41,8 @@
int main(char argc, char** argv)
{
- Fresco_Test::TestCmd testcmd(argc, argv);
- Fresco_Test::TestCaseWrapper* test;
+ SyUnit::TestCmd testcmd(argc, argv);
+ SyUnit::TestCaseWrapper* test;
@all_tests@
@@ -53,7 +53,7 @@
test_include_tmpl = """#include "@test_class_file@"
"""
-single_test_tmpl = """test = new Fresco_Test::TestCaseWrapperImpl< @test_class@ >
+single_test_tmpl = """test = new SyUnit::TestCaseWrapperImpl< @test_class@ >
(// name of test
"@name@",
// test method to call