diff options
Diffstat (limited to 'meta/lib/oeqa/selftest/cases/rust.py')
-rw-r--r-- | meta/lib/oeqa/selftest/cases/rust.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/meta/lib/oeqa/selftest/cases/rust.py b/meta/lib/oeqa/selftest/cases/rust.py index 653867f0a4..95859a9eef 100644 --- a/meta/lib/oeqa/selftest/cases/rust.py +++ b/meta/lib/oeqa/selftest/cases/rust.py | |||
@@ -77,9 +77,9 @@ class RustSelfTestSystemEmulated(OESelftestTestCase, OEPTestResultTestCase): | |||
77 | 'src/tools/test-float-parse', | 77 | 'src/tools/test-float-parse', |
78 | 'src/tools/suggest-tests', | 78 | 'src/tools/suggest-tests', |
79 | 'src/tools/tidy', | 79 | 'src/tools/tidy', |
80 | 'tests/assembly/asm/aarch64-outline-atomics.rs', | 80 | 'tests/assembly-llvm/asm/aarch64-outline-atomics.rs', |
81 | 'tests/codegen/issues/issue-122805.rs', | 81 | 'tests/codegen-llvm/issues/issue-122805.rs', |
82 | 'tests/codegen/thread-local.rs', | 82 | 'tests/codegen-llvm/thread-local.rs', |
83 | 'tests/mir-opt/', | 83 | 'tests/mir-opt/', |
84 | 'tests/run-make', | 84 | 'tests/run-make', |
85 | 'tests/run-make-fulldeps', | 85 | 'tests/run-make-fulldeps', |
@@ -89,7 +89,7 @@ class RustSelfTestSystemEmulated(OESelftestTestCase, OEPTestResultTestCase): | |||
89 | 'tests/ui/abi/stack-probes-lto.rs', | 89 | 'tests/ui/abi/stack-probes-lto.rs', |
90 | 'tests/ui/abi/stack-probes.rs', | 90 | 'tests/ui/abi/stack-probes.rs', |
91 | 'tests/ui/codegen/mismatched-data-layouts.rs', | 91 | 'tests/ui/codegen/mismatched-data-layouts.rs', |
92 | 'tests/codegen/rust-abi-arch-specific-adjustment.rs', | 92 | 'tests/codegen-llvm/rust-abi-arch-specific-adjustment.rs', |
93 | 'tests/ui/debuginfo/debuginfo-emit-llvm-ir-and-split-debuginfo.rs', | 93 | 'tests/ui/debuginfo/debuginfo-emit-llvm-ir-and-split-debuginfo.rs', |
94 | 'tests/ui/feature-gates/version_check.rs', | 94 | 'tests/ui/feature-gates/version_check.rs', |
95 | 'tests/ui-fulldeps/', | 95 | 'tests/ui-fulldeps/', |
@@ -107,7 +107,7 @@ class RustSelfTestSystemEmulated(OESelftestTestCase, OEPTestResultTestCase): | |||
107 | # Copy remote-test-server to image through scp | 107 | # Copy remote-test-server to image through scp |
108 | host_sys = get_bb_var("RUST_BUILD_SYS", "rust") | 108 | host_sys = get_bb_var("RUST_BUILD_SYS", "rust") |
109 | ssh = SSHControl(ip=qemu.ip, logfile=qemu.sshlog, user="root") | 109 | ssh = SSHControl(ip=qemu.ip, logfile=qemu.sshlog, user="root") |
110 | ssh.copy_to(builddir + "/build/" + host_sys + "/stage2-tools-bin/remote-test-server","~/") | 110 | ssh.copy_to(builddir + "/build/" + host_sys + "/stage1-tools-bin/remote-test-server","~/") |
111 | # Execute remote-test-server on image through background ssh | 111 | # Execute remote-test-server on image through background ssh |
112 | command = '~/remote-test-server --bind 0.0.0.0:12345 -v' | 112 | command = '~/remote-test-server --bind 0.0.0.0:12345 -v' |
113 | sshrun=subprocess.Popen(("ssh", '-o', 'UserKnownHostsFile=/dev/null', '-o', 'StrictHostKeyChecking=no', '-f', "root@%s" % qemu.ip, command), shell=False, stdout=subprocess.PIPE, stderr=subprocess.PIPE) | 113 | sshrun=subprocess.Popen(("ssh", '-o', 'UserKnownHostsFile=/dev/null', '-o', 'StrictHostKeyChecking=no', '-f', "root@%s" % qemu.ip, command), shell=False, stdout=subprocess.PIPE, stderr=subprocess.PIPE) |