summaryrefslogtreecommitdiff
path: root/test/utils.py
diff options
context:
space:
mode:
authorSoni L <EnderMoneyMod@gmail.com>2023-11-28 13:10:49 -0300
committerGitHub <noreply@github.com>2023-11-28 08:10:49 -0800
commitb85cbadb19be5f060cd1d23e53e2d19940c5b571 (patch)
treeae57971a152936fd50eb34adefe0d3985d694518 /test/utils.py
parentbf44aa4777add07462df6fe7a02eac8754b40a82 (diff)
downloadwabt-b85cbadb19be5f060cd1d23e53e2d19940c5b571.tar.gz
wabt-b85cbadb19be5f060cd1d23e53e2d19940c5b571.tar.bz2
wabt-b85cbadb19be5f060cd1d23e53e2d19940c5b571.zip
Make run-spec-wasm2c platform-consistent (#2335)
Diffstat (limited to 'test/utils.py')
-rw-r--r--test/utils.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/utils.py b/test/utils.py
index fab0d4b0..ee33f3c9 100644
--- a/test/utils.py
+++ b/test/utils.py
@@ -94,12 +94,6 @@ class Executable(object):
if error:
raise error
- def RunWithArgsForError(self, *args, **kwargs):
- stdout, stderr, error = self._RunWithArgsInternal(*args, **kwargs)
- if stdout:
- sys.stdout.write(stdout)
- return error
-
def AppendArg(self, arg):
self.after_args.append(arg)