summaryrefslogtreecommitdiff
path: root/libdeno/test.cc
diff options
context:
space:
mode:
authorYoshiya Hinosawa <stibium121@gmail.com>2018-08-19 16:44:10 +0900
committerRyan Dahl <ry@tinyclouds.org>2018-08-19 11:27:47 -0400
commitaaabc853e84a03f72208c0e80634bd986c3ca4e2 (patch)
tree24cb4daf07c7b52b9260e041289ab2e79f25f5a8 /libdeno/test.cc
parent146bc93b81ef1775a3a22784c74cbf0c8bbd1c9e (diff)
chore: move libdeno files to //libdeno/
Diffstat (limited to 'libdeno/test.cc')
-rw-r--r--libdeno/test.cc10
1 files changed, 10 insertions, 0 deletions
diff --git a/libdeno/test.cc b/libdeno/test.cc
new file mode 100644
index 000000000..9638dba60
--- /dev/null
+++ b/libdeno/test.cc
@@ -0,0 +1,10 @@
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+#include "deno.h"
+#include "testing/gtest/include/gtest/gtest.h"
+
+int main(int argc, char** argv) {
+ testing::InitGoogleTest(&argc, argv);
+ deno_init();
+ deno_set_flags(&argc, argv);
+ return RUN_ALL_TESTS();
+}