Skip to content

Commit 618b7c4

Browse files
committed
Remove leftover from Makefile
'test-js-precommit' target was unnecessary, because all of the jerry tests pass in compact profile as well. Related issue: #879 Related PR: #912 JerryScript-DCO-1.0-Signed-off-by: László Langó [email protected]
1 parent 2d7f1d1 commit 618b7c4

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ script: "make -j VERBOSE=1 NINJA=1 $TARGET"
1515

1616
env:
1717
- TARGET="check-signed-off check-vera check-cppcheck"
18-
- TARGET="build.linux test-js-precommit"
19-
- TARGET="build.linux test-js-precommit" TOOLCHAIN=build/configs/toolchain_linux_armv7l-hf.cmake TIMEOUT=300
18+
- TARGET="build.linux test-js"
19+
- TARGET="build.linux test-js" TOOLCHAIN=build/configs/toolchain_linux_armv7l-hf.cmake TIMEOUT=300
2020
- TARGET=test-buildoptions
2121
- TARGET=test-unit
2222

2323
matrix:
2424
include:
2525
- os: osx
26-
env: TARGET="build.darwin test-js-precommit"
26+
env: TARGET="build.darwin test-js"
2727
- os: osx
2828
env: TARGET=test-unit
2929
allow_failures:

Makefile

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -364,12 +364,6 @@ test-js: \
364364
$(foreach __SUITE,$(JERRY_TEST_SUITE_JTS_CP), \
365365
test-js.$(__TARGET).$(firstword $(subst :, ,$(__SUITE)))))
366366

367-
.PHONY: test-js-precommit
368-
test-js-precommit: \
369-
$(foreach __TARGET,$(JERRY_TEST_TARGETS), \
370-
$(foreach __SUITE,$(JERRY_TEST_SUITE_J) $(JERRY_TEST_SUITE_JTS_PREC), \
371-
test-js.$(__TARGET).$(firstword $(subst :, ,$(__SUITE)))))
372-
373367
.PHONY: test-buildoptions
374368
test-buildoptions: \
375369
$(foreach __TARGET,$(JERRY_BUILD_OPTIONS_TEST_TARGETS_NATIVE), \
@@ -386,7 +380,7 @@ precommit: prerequisites
386380
$(Q) echo "...building and running unit tests..."
387381
$(Q)+$(MAKE) --no-print-directory test-unit
388382
$(Q) echo "...running precommit JS tests..."
389-
$(Q)+$(MAKE) --no-print-directory test-js-precommit
383+
$(Q)+$(MAKE) --no-print-directory test-js
390384
$(Q) echo "...SUCCESS"
391385

392386
# Targets to install and clean prerequisites

0 commit comments

Comments
 (0)