diff options
author | Eric Le Bihan <eric.le.bihan.dev@free.fr> | 2018-04-29 00:14:13 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-04-29 09:57:32 +0200 |
commit | 09a5eb427a6d9160e74ab56941640c02334eabf1 (patch) | |
tree | fd63ba2e1bf59dbf191f5cdbf66b7fe030f14704 /support/testing/tests/package/test_rust.py | |
parent | 554a0350b825dffc26f652e20895f3ea71af929b (diff) | |
download | buildroot-09a5eb427a6d9160e74ab56941640c02334eabf1.tar.gz buildroot-09a5eb427a6d9160e74ab56941640c02334eabf1.zip |
support/testing: set $USER in rust tests
When the run-time tests to build rust and rust-bin packages are run via Docker,
the $USER environment variable is not set, which makes cargo fail when
initializing the test project.
So add it to make cargo happy.
Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'support/testing/tests/package/test_rust.py')
-rw-r--r-- | support/testing/tests/package/test_rust.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/support/testing/tests/package/test_rust.py b/support/testing/tests/package/test_rust.py index e6c0de2214..2dc814f99d 100644 --- a/support/testing/tests/package/test_rust.py +++ b/support/testing/tests/package/test_rust.py @@ -21,6 +21,7 @@ class TestRustBase(infra.basetest.BRTest): def build_test_prog(self): hostdir = os.path.join(self.builddir, 'host') env = os.environ.copy() + env["USER"] = "br-user" env["PATH"] = "{}:".format(os.path.join(hostdir, 'bin')) + env["PATH"] env["CARGO_HOME"] = os.path.join(hostdir, 'usr', 'share', 'cargo') env["RUST_TARGET_PATH"] = os.path.join(hostdir, 'etc', 'rustc') |