aboutsummaryrefslogtreecommitdiff
path: root/tests/runner.py
diff options
context:
space:
mode:
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;
}
'''