aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/backend/backends.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2016-11-20 16:07:32 -0500
committerGitHub <noreply@github.com>2016-11-20 16:07:32 -0500
commitaa9668a2fc40b728ec0e3afed85ac9e12c3c50f1 (patch)
tree959590dbd9aacd7ffb932f1cf75c8730d272a727 /mesonbuild/backend/backends.py
parentdf4af2d122111651468617b4feb34ccc91132bad (diff)
parent1ebc5c1ea0c4f32ffd9acd82a8fc7f122326b01c (diff)
downloadmeson-aa9668a2fc40b728ec0e3afed85ac9e12c3c50f1.zip
meson-aa9668a2fc40b728ec0e3afed85ac9e12c3c50f1.tar.gz
meson-aa9668a2fc40b728ec0e3afed85ac9e12c3c50f1.tar.bz2
Merge pull request #730 from mesonbuild/newtest
New testing tool
Diffstat (limited to 'mesonbuild/backend/backends.py')
-rw-r--r--mesonbuild/backend/backends.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/mesonbuild/backend/backends.py b/mesonbuild/backend/backends.py
index b82227f..c37ae2a 100644
--- a/mesonbuild/backend/backends.py
+++ b/mesonbuild/backend/backends.py
@@ -50,7 +50,7 @@ class ExecutableSerialisation():
class TestSerialisation:
def __init__(self, name, suite, fname, is_cross, exe_wrapper, is_parallel, cmd_args, env,
- should_fail, valgrind_args, timeout, workdir, extra_paths):
+ should_fail, timeout, workdir, extra_paths):
self.name = name
self.suite = suite
self.fname = fname
@@ -60,7 +60,6 @@ class TestSerialisation:
self.cmd_args = cmd_args
self.env = env
self.should_fail = should_fail
- self.valgrind_args = valgrind_args
self.timeout = timeout
self.workdir = workdir
self.extra_paths = extra_paths
@@ -443,7 +442,7 @@ class Backend():
a = os.path.join(self.environment.get_build_dir(), a.rel_to_builddir(self.build_to_src))
cmd_args.append(a)
ts = TestSerialisation(t.get_name(), t.suite, fname, is_cross, exe_wrapper,
- t.is_parallel, cmd_args, t.env, t.should_fail, t.valgrind_args,
+ t.is_parallel, cmd_args, t.env, t.should_fail,
t.timeout, t.workdir, extra_paths)
arr.append(ts)
pickle.dump(arr, datafile)