diff options
author | Soni L <EnderMoneyMod@gmail.com> | 2023-11-28 13:10:49 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-28 08:10:49 -0800 |
commit | b85cbadb19be5f060cd1d23e53e2d19940c5b571 (patch) | |
tree | ae57971a152936fd50eb34adefe0d3985d694518 /test/utils.py | |
parent | bf44aa4777add07462df6fe7a02eac8754b40a82 (diff) | |
download | wabt-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.py | 6 |
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) |