We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f09d44 commit 61bd0c9Copy full SHA for 61bd0c9
test/run-tests.py
@@ -6,7 +6,7 @@
6
passed, failed, verbose, quiet = 0, 0, 0, 0
7
8
def run (forthfile):
9
- return os.popen ("gforth ../ttester-codewars.4th " + forthfile + " -e bye 2>/dev/null").readlines ()
+ return os.popen ("bash -c 'gforth ../ttester-codewars.4th " + forthfile + " -e bye 2> >(sed -E \"s/redefined [^ ]+ //g\" >&2)'").readlines ()
10
11
def timeless (lines):
12
return [re.sub(r'\d+', '0', l) if "<COMPLETEDIN::>" in l else l for l in lines]
0 commit comments