From ab47fc8ffe62d27c2de9eb001ec1cc70b07515d3 Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Mon, 10 Aug 2015 17:22:17 -0700 Subject: [PATCH] Update libdparse --- libdparse | 2 +- makefile | 8 +++++--- tests/test.sh | 2 +- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/libdparse b/libdparse index 66dffcb..b3303ab 160000 --- a/libdparse +++ b/libdparse @@ -1 +1 @@ -Subproject commit 66dffcb615a1992fc69bbc7d8dccd70950a327a4 +Subproject commit b3303ab6fd15e9cbde50c6987b303b6ed296d493 diff --git a/makefile b/makefile index 2db320d..1754ece 100644 --- a/makefile +++ b/makefile @@ -1,5 +1,7 @@ -SRC := $(shell find src -name "*.d") $(shell find libdparse/src -name "*.d") -INCLUDE_PATHS := -Ilibdparse/src -Isrc +SRC := $(shell find src -name "*.d") \ + $(shell find libdparse/src -name "*.d") \ + $(shell find libdparse/experimental_allocator/src -name "*.d") +INCLUDE_PATHS := -Ilibdparse/src -Isrc -Ilibdparse/experimental_allocator/src DMD_COMMON_FLAGS := -dip25 -w $(INCLUDE_PATHS) DMD_DEBUG_FLAGS := -g $(DMD_COMMON_FLAGS) DMD_FLAGS := -O -inline $(DMD_COMMON_FLAGS) @@ -18,7 +20,7 @@ ldc: $(SRC) gdc: $(SRC) gdc $(GDC_FLAGS) $^ -obin/dfmt -test: bin/dfmt-test +test: bin/dfmt cd tests && ./test.sh bin/dfmt-test: $(SRC) diff --git a/tests/test.sh b/tests/test.sh index 3b20a18..7f11c5a 100755 --- a/tests/test.sh +++ b/tests/test.sh @@ -12,7 +12,7 @@ do else args= fi - ../bin/dfmt-test --brace_style=${braceStyle} ${args} "${source}" > "${braceStyle}/${source}.out" + ../bin/dfmt --brace_style=${braceStyle} ${args} "${source}" > "${braceStyle}/${source}.out" diff -u "${braceStyle}/${source}.ref" "${braceStyle}/${source}.out" done done