diff options
Diffstat (limited to 'meta/lib/patchtest')
-rwxr-xr-x | meta/lib/patchtest/selftest/selftest | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/patchtest/selftest/selftest b/meta/lib/patchtest/selftest/selftest index 79b1254248..006d1badf8 100755 --- a/meta/lib/patchtest/selftest/selftest +++ b/meta/lib/patchtest/selftest/selftest | |||
@@ -37,7 +37,7 @@ def test(root, patch): | |||
37 | res = True | 37 | res = True |
38 | patchpath = os.path.abspath(os.path.join(root, patch)) | 38 | patchpath = os.path.abspath(os.path.join(root, patch)) |
39 | 39 | ||
40 | cmd = 'patchtest %s %s/tests --patch %s' % (repodir, topdir, patchpath) | 40 | cmd = 'patchtest --repodir %s --testdir %s/tests --patch %s' % (repodir, topdir, patchpath) |
41 | results = subprocess.check_output(cmd, stderr=subprocess.STDOUT, universal_newlines=True, shell=True) | 41 | results = subprocess.check_output(cmd, stderr=subprocess.STDOUT, universal_newlines=True, shell=True) |
42 | 42 | ||
43 | return results | 43 | return results |