You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1011 B
36 lines
1011 B
2 years ago
|
From 772f08f8255d7ab921c344ab4243249cbd1c37fc Mon Sep 17 00:00:00 2001
|
||
|
From: Frantisek Sumsal <frantisek@sumsal.cz>
|
||
|
Date: Sat, 10 Aug 2019 16:05:07 +0200
|
||
|
Subject: [PATCH] test: drop the missed || exit 1 expression
|
||
|
|
||
|
...as we've already done in the rest of the testsuite, see
|
||
|
cc469c3dfc398210f38f819d367e68646c71d8da
|
||
|
|
||
|
(cherry picked from commit 67c434b03f8a24f5350f017dfb4b2464406046db)
|
||
|
|
||
|
Related: #1808940
|
||
|
---
|
||
|
test/TEST-36-NUMAPOLICY/test.sh | 3 ++-
|
||
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/test/TEST-36-NUMAPOLICY/test.sh b/test/TEST-36-NUMAPOLICY/test.sh
|
||
|
index f0a321e7a1..3b3b120423 100755
|
||
|
--- a/test/TEST-36-NUMAPOLICY/test.sh
|
||
|
+++ b/test/TEST-36-NUMAPOLICY/test.sh
|
||
|
@@ -1,5 +1,6 @@
|
||
|
#!/bin/bash
|
||
|
set -e
|
||
|
+
|
||
|
TEST_DESCRIPTION="test MUMAPolicy= and NUMAMask= options"
|
||
|
TEST_NO_NSPAWN=1
|
||
|
QEMU_OPTIONS="-numa node,nodeid=0"
|
||
|
@@ -41,7 +42,7 @@ EOF
|
||
|
cp testsuite.sh $initdir/
|
||
|
|
||
|
setup_testsuite
|
||
|
- ) || return 1
|
||
|
+ )
|
||
|
setup_nspawn_root
|
||
|
|
||
|
ddebug "umount $TESTDIR/root"
|