summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorAnatoli Papirovski <apapirovski@mac.com>2018-05-22 23:49:59 +0400
committerAnatoli Papirovski <apapirovski@mac.com>2018-06-24 21:34:59 -0700
commit6f63f8d730c8c3b19de7a591c35d376d428a4d56 (patch)
treeb0f53a8a861184ddb37c44d5ea4db39a782e0e1e /tools
parent1e7ff81e47bed3275728eee1a676ba95e4f2b41d (diff)
downloadandroid-node-v8-6f63f8d730c8c3b19de7a591c35d376d428a4d56.tar.gz
android-node-v8-6f63f8d730c8c3b19de7a591c35d376d428a4d56.tar.bz2
android-node-v8-6f63f8d730c8c3b19de7a591c35d376d428a4d56.zip
test: remove outdated, non-functioning test
The timers directory test, utilizing FakeTime, has not worked in quite a while and is not truly testing Node.js behaviour. If a similar test is necessary it would be better suited to libuv on which Node.js relies for timers functionality. PR-URL: https://github.com/nodejs/node/pull/20894 Fixes: https://github.com/nodejs/node/issues/10154 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: Gus Caplan <me@gus.host>
Diffstat (limited to 'tools')
-rw-r--r--tools/Makefile20
1 files changed, 0 insertions, 20 deletions
diff --git a/tools/Makefile b/tools/Makefile
deleted file mode 100644
index d627c149d6..0000000000
--- a/tools/Makefile
+++ /dev/null
@@ -1,20 +0,0 @@
-FAKETIME_REPO := git://github.com/wolfcw/libfaketime.git
-FAKETIME_LOCAL_REPO := $(CURDIR)/faketime
-FAKETIME_BRANCH := master
-FAKETIME_BINARY := $(FAKETIME_PREFIX)/bin/faketime
-
-.PHONY: faketime
-
-faketime: $(FAKETIME_BINARY)
-
-clean:
- $(RM) -r $(FAKETIME_LOCAL_REPO)
-
-$(FAKETIME_BINARY): $(FAKETIME_LOCAL_REPO)
- cd $(FAKETIME_LOCAL_REPO) && \
- git checkout $(FAKETIME_BRANCH) && \
- PREFIX=$(FAKETIME_LOCAL_REPO)/src make
-
-$(FAKETIME_LOCAL_REPO):
- git clone $(FAKETIME_REPO) $(FAKETIME_LOCAL_REPO)
-