diff options
Diffstat (limited to 'tests/runner.py')
-rw-r--r-- | tests/runner.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runner.py b/tests/runner.py index cdbaf43d..0a48ede7 100644 --- a/tests/runner.py +++ b/tests/runner.py @@ -809,9 +809,9 @@ class T(unittest.TestCase): output = open(path_from_root(['tests', 'raytrace.ppm']), 'r').read() self.do_test(src, output, ['1']) - def zzztest_dlmalloc(self): + def test_dlmalloc(self): src = open(path_from_root(['tests', 'dlmalloc.c']), 'r').read() - self.do_test(src, 'malloced', ['1']) + self.do_test(src, '*1,0*') def test_fasta(self): results = [ (1,'''GG*ctt**tgagc*'''), (20,'''GGCCGGGCGCGGTGGCTCACGCCTGTAATCCCAGCACTTT*cttBtatcatatgctaKggNcataaaSatgtaaaDcDRtBggDtctttataattcBgtcg**tacgtgtagcctagtgtttgtgttgcgttatagtctatttgtggacacagtatggtcaaa**tgacgtcttttgatctgacggcgttaacaaagatactctg*'''), |