mirror of
https://github.com/DoneJS-Runtime/quickjs-done-nextgen.git
synced 2025-01-09 17:43:15 +00:00
Remove test_conv.c (#800)
We only build it, we never run it, and it's fairly slow to build. It's an almost verbatim copy of a sizable part of cutils.c that _is_ tested so let's just remove it. Fixes: https://github.com/quickjs-ng/quickjs/issues/788
This commit is contained in:
parent
4b8057d512
commit
291eb9c5db
3 changed files with 0 additions and 1765 deletions
|
@ -370,10 +370,6 @@ if(BUILD_EXAMPLES)
|
||||||
target_link_libraries(test_fib qjs)
|
target_link_libraries(test_fib qjs)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_executable(test_conv
|
|
||||||
tests/test_conv.c
|
|
||||||
)
|
|
||||||
|
|
||||||
# Install target
|
# Install target
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
6
Makefile
6
Makefile
|
@ -58,9 +58,6 @@ $(QJS): $(BUILD_DIR)
|
||||||
$(QJSC): $(BUILD_DIR)
|
$(QJSC): $(BUILD_DIR)
|
||||||
cmake --build $(BUILD_DIR) --target qjsc -j $(JOBS)
|
cmake --build $(BUILD_DIR) --target qjsc -j $(JOBS)
|
||||||
|
|
||||||
$(BUILD_DIR)/test_conv: $(BUILD_DIR) tests/test_conv.c
|
|
||||||
cmake --build $(BUILD_DIR) --target test_conv
|
|
||||||
|
|
||||||
install: $(QJS) $(QJSC)
|
install: $(QJS) $(QJSC)
|
||||||
cmake --build $(BUILD_DIR) --target install
|
cmake --build $(BUILD_DIR) --target install
|
||||||
|
|
||||||
|
@ -99,9 +96,6 @@ cxxtest: cxxtest.cc quickjs.h
|
||||||
test: $(QJS)
|
test: $(QJS)
|
||||||
$(RUN262) -c tests.conf
|
$(RUN262) -c tests.conf
|
||||||
|
|
||||||
testconv: $(BUILD_DIR)/test_conv
|
|
||||||
$(BUILD_DIR)/test_conv
|
|
||||||
|
|
||||||
test262: $(QJS)
|
test262: $(QJS)
|
||||||
$(RUN262) -m -c test262.conf -a
|
$(RUN262) -m -c test262.conf -a
|
||||||
|
|
||||||
|
|
1755
tests/test_conv.c
1755
tests/test_conv.c
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue