Skip to content

Commit

Permalink
better fixes for glob ignoring
Browse files Browse the repository at this point in the history
  • Loading branch information
Pat-Lafon committed Jun 29, 2023
1 parent 7407d9d commit 943157e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bril-rs/brillvm/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ TESTS := ../../test/interp/core/*.bril \
../../test/interp/float/*.bril \
../../test/interp/ssa/*.bril \
../../test/interp/mem/*.bril \
../../test/interp/mixed/*.bril \
../../test/interp/mixed/*[^r].bril # A hack to exclude store-char.bril by excluding any file ending in r.bril

# Currently ignoring the Cholesky benchmark because of (probably) a floating point rounding bug.
BENCHMARKS := ../../benchmarks/core/*.bril \
../../benchmarks/float/*.bril \
../../benchmarks/mem/*.bril \
../../benchmarks/mixed/[!cholesky]*.bril
../../benchmarks/mixed/[^c]*.bril # A hack to exclude cholesky.bril by excluding any file ending in r.bril

clean:
cargo clean
Expand Down
2 changes: 1 addition & 1 deletion brilift/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ endif

# Brilift only supports core Bril for now, so we select those tests &
# benchmarks.
TESTS := ../test/interp/core/*.bril ../test/interp/float/*.bril ../test/interp/mem/*.bril ../test/interp/mixed/store-float.bril
TESTS := ../test/interp/core/*.bril ../test/interp/float/*.bril ../test/interp/mem/*.bril ../test/interp/mixed/*[r].bril # A hack to exclude store-char.bril by excluding any file ending in r.bril
BENCHMARKS := ../benchmarks/core/*.bril ../benchmarks/float/*.bril ../benchmarks/mem/*.bril ../benchmarks/mixed/*.bril

CFLAGS := $(if $(TARGET),-target $(TARGET))
Expand Down

0 comments on commit 943157e

Please sign in to comment.