use fixed path for lokinet-bootstrap

dont run unittest with CROSS=ON
pull/473/head
Jeff Becker 5 years ago
parent dce1cfaae1
commit 102875febc
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

@ -175,7 +175,7 @@ testnet:
$(TEST_EXE): debug
test: $(TEST_EXE)
$(TEST_EXE)
test x$(CROSS) = xOFF && $(TEST_EXE)
android-gradle-prepare:
rm -f $(ANDROID_PROPS)
@ -222,7 +222,7 @@ coverage-config: clean
coverage: coverage-config
$(MAKE) -C $(BUILD_ROOT)
$(TEST_EXE) || true # continue even if tests fail
test x$(CROSS) = xOFF && $(TEST_EXE) || true # continue even if tests fail
mkdir -p "$(COVERAGE_OUTDIR)"
ifeq ($(CLANG),OFF)
gcovr -r . --branches --html --html-details -o "$(COVERAGE_OUTDIR)/lokinet.html"
@ -259,7 +259,7 @@ debian: debian-configure
cp $(EXE) lokinet
debian-test:
$(TEST_EXE) || true
test x$(CROSS) = xOFF && $(TEST_EXE) || true
install:
$(MAKE) -C '$(BUILD_ROOT)' install

@ -21,7 +21,8 @@ then
fi
# use temp file to not overrwrite existing bootstrap file on fail
tmp=mktemp
#tmp=mktemp
tmp=/tmp/bootstrap.tmp
# MacOS does not have wget without homebrew but does have curl
# Rick also had indicated most BSDs have curl too

Loading…
Cancel
Save