diff options
Diffstat (limited to 'test/symtab9.awk')
-rw-r--r-- | test/symtab9.awk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/symtab9.awk b/test/symtab9.awk index fd8f14d9..6b520147 100644 --- a/test/symtab9.awk +++ b/test/symtab9.awk @@ -11,5 +11,9 @@ BEGIN { getline printf "NR should be 3, is %d\n", SYMTAB["NR"] - system("rm testit.txt") + + # Can't do this here. Windows doesn't let you remove a file that + # is still open. Moving it to END won't help either, since the file + # (correctly) remain open until after the END finishes. + # system("rm testit.txt") } |