Skip to content

Commit 3eb2d65

Browse files
committed
Add an empty test file so tests pass.
Also remove my incorrect `mkdir $(TEST_DIR)`.
1 parent 0f93724 commit 3eb2d65

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

Makefile

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,15 @@ build :
2828
(add-to-list 'custom-theme-load-path \"./\") \
2929
(load-theme 'solarized t))"
3030

31-
init :
32-
mkdir -p $(TEST_DIR)
33-
34-
test-dep-1 : init
31+
test-dep-1 :
3532
@cd $(TEST_DIR) && \
3633
$(EMACS) $(EMACS_BATCH) -L . -L .. -l $(TEST_DEP_1) || \
3734
(echo "Can't load test dependency $(TEST_DEP_1).el, run 'make downloads' to fetch it" ; exit 1)
3835

39-
downloads : init
36+
downloads :
4037
$(CURL) '$(TEST_DEP_1_STABLE_URL)' > $(TEST_DIR)/$(TEST_DEP_1).el
4138

42-
downloads-latest : init
39+
downloads-latest :
4340
$(CURL) '$(TEST_DEP_1_LATEST_URL)' > $(TEST_DIR)/$(TEST_DEP_1).el
4441

4542
autoloads :

ert-tests/dummy-test.el

Whitespace-only changes.

0 commit comments

Comments
 (0)