support/testing: test_rust: remove kernel build
authorRomain Naour <romain.naour@gmail.com>
Sun, 12 Sep 2021 14:11:32 +0000 (16:11 +0200)
committerArnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Tue, 21 Sep 2021 20:23:26 +0000 (22:23 +0200)
commitf6d438d59fbb291e677edc030150944ee61feb4d
tree6582b1fcc4c46f75698e7fcf60ae13d1bceb4833
parent883d5a2f3ddac1ece7170502a724c5b0a8005714
support/testing: test_rust: remove kernel build

This test already use builtin kernel provided by the testsuite infra:

    self.emulator.boot(arch="armv7",
                       kernel="builtin",
                       options=["-initrd", img])

But a second kernel is build from the its defconfig. This second kernel
is not used by the test.

The TestRust (using BR2_PACKAGE_HOST_RUST=y) is really long to build,
save some cpu time by removing the kernel build.

This unused kernel (based on 4.11.3 release) doesn't even build with
host gcc >= 10.

Signed-off-by: Romain Naour <romain.naour@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
support/testing/tests/package/test_rust.py