We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f23ecd5 commit dc8d2ecCopy full SHA for dc8d2ec
test/Makefile
@@ -1,13 +1,14 @@
1
SRCDIR := $(abspath $(dir $(lastword $(MAKEFILE_LIST))))
2
JULIAHOME := $(abspath $(SRCDIR)/..)
3
BUILDDIR := .
4
-STDLIBDIR := $(abspath $(JULIAHOME)/stdlib)
5
include $(JULIAHOME)/Make.inc
+VERSDIR := v$(shell cut -d. -f1-2 < $(JULIAHOME)/VERSION)
6
+STDLIBDIR := $(build_datarootdir)/julia/stdlib/$(VERSDIR)
7
# TODO: this Makefile ignores BUILDDIR, except for computing JULIA_EXECUTABLE
8
9
TESTGROUPS = unicode strings compiler
10
TESTS = all stdlib $(TESTGROUPS) \
- $(patsubst $(STDLIBDIR)/%/,%,$(dir $(wildcard $(STDLIBDIR)/*/.))) \
11
+ $(patsubst $(STDLIBDIR)/%/,%,$(dir $(wildcard $(STDLIBDIR)/*/.))) \
12
$(filter-out runtests testdefs, \
13
$(patsubst $(SRCDIR)/%.jl,%,$(wildcard $(SRCDIR)/*.jl))) \
14
$(foreach group,$(TESTGROUPS), \
0 commit comments