aboutsummaryrefslogtreecommitdiff
path: root/tests/runner.py
diff options
context:
space:
mode:
authoralon@honor <none@none>2010-09-04 18:05:18 -0700
committeralon@honor <none@none>2010-09-04 18:05:18 -0700
commit1715e6c9b2819fa2ca9b8a0031ae2c93781af20f (patch)
treeea3634b45dd1094357b14f7685866721e9181db6 /tests/runner.py
parent4344835f29a8812a2ae0ab45fffbaef1add0b08d (diff)
finish varargs work
Diffstat (limited to 'tests/runner.py')
-rw-r--r--tests/runner.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runner.py b/tests/runner.py
index 26e0d0f5..d1a8b63f 100644
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -557,7 +557,7 @@ class T(unittest.TestCase):
'''
self.do_test(src, '*96,97,98,101,101*')
- def zzztest_varargs(self):
+ def test_varargs(self):
src = '''
#include <stdio.h>
#include "stdarg.h"
@@ -573,7 +573,7 @@ class T(unittest.TestCase):
}
int main() {
- vary("*cheez: %d+%d*", 10, 23);
+ vary("*cheez: %d+%d*", 10, 24);
return 0;
}
'''