Diff of /trunk/wharfie/tests/Toolchain2/Wharfile [000000] .. [r60]  Maximize  Restore

Switch to unified view

a b/trunk/wharfie/tests/Toolchain2/Wharfile
1
# Testcase: Check if command of TOOLCHAIN action is executed in the host sysroot
2
3
FROM debian_amd64_stretch
4
5
TOOLCHAIN toolchain.tar echo "test"; pwd; touch /tmp/file-in-host-sysroot
6
7
RUN HOST tar -tf ../toolchain.tar  | grep ./host/tmp/file-in-host-sysroot; \
8
    [ $? == 0 ] && touch ../result.tar
9
10
11
12