Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mockingbirdnest/Principia
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5399b91b72e0
Choose a base ref
...
head repository: mockingbirdnest/Principia
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0e174f86480e
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Jan 16, 2020

  1. Don't ignore test failures.

    pleroy committed Jan 16, 2020
    Copy the full SHA
    96c0523 View commit details
  2. Merge pull request #2449 from pleroy/Make

    Don't ignore test failures in make
    pleroy authored Jan 16, 2020
    Copy the full SHA
    0e174f8 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 Makefile
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -255,15 +255,15 @@ PACKAGE_TEST_TARGETS := $(patsubst $(BIN_DIRECTORY)%, %, $(PACKAGE_TEST_BINS))

# make base/not_null_test compiles bin/base/not_null_test and runs it.
$(TEST_TARGETS) : % : $(BIN_DIRECTORY)%
-$^
$^

# make base/test compiles bin/base/test and runs it.
$(PACKAGE_TEST_TARGETS) : % : $(BIN_DIRECTORY)%
-$^
$^

test: $(PRINCIPIA_TEST_BIN)
@echo "Cake, and grief counseling, will be available at the conclusion of the test."
-$^
$^

########## Benchmarks