Skip to content
Snippets Groups Projects
Verified Commit 26299181 authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Fix issue if test:redox is run without build:redox

parent 00903961
No related branches found
No related tags found
No related merge requests found
......@@ -45,7 +45,7 @@ test:redox:
variables:
TARGET: x86_64-unknown-redox
script:
- export CARGO="redoxer"
- export CARGO_TEST="redoxer"
- export RUSTUP_TOOLCHAIN="$HOME/.redoxer/toolchain"
- export PATH="$RUSTUP_TOOLCHAIN/bin:$PATH"
- export TEST_RUNNER="redoxer exec --folder . -- sh --"
......
TARGET?=
CARGO?=cargo
CARGO_TEST?=$(CARGO)
CARGOFLAGS=
RUSTCFLAGS=
......@@ -88,7 +89,7 @@ sysroot: all
touch $@
test: sysroot
$(CARGO) test
$(CARGO_TEST) test
$(MAKE) -C tests verify
# Debug targets
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment