summaryrefslogtreecommitdiff
blob: 5afd89293695547d8576c03d2329ebd43cd012ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
From 554c220e78172213e9637f9a901009b4bc964e3a Mon Sep 17 00:00:00 2001
From: "Jasper St. Pierre" <jstpierre@mecheye.net>
Date: Wed, 15 Jan 2014 17:00:22 -0500
Subject: [PATCH] gjs-tests: Remove dumpstack test

OK, I lied. This is the most useless test ever.
---
 test/gjs-tests.cpp | 17 -----------------
 1 file changed, 17 deletions(-)

diff --git a/test/gjs-tests.cpp b/test/gjs-tests.cpp
index b79b616..6cade7b 100644
--- a/test/gs-tests.cpp
+++ b/test/gjs-tests.cpp
@@ -163,22 +163,6 @@ gjstest_test_func_gjs_jsapi_util_string_js_string_utf8(void)
 }
 
 static void
-gjstest_test_func_gjs_stack_dump(void)
-{
-  GjsContext *context;
-
-  /* TODO this test could be better - maybe expose dumpstack as a JS API
-   * so that we have a JS stack to dump?  At least here we're getting some
-   * coverage.
-   */
-  context = gjs_context_new();
-
-  gjs_dumpstack();
-  g_object_unref(context);
-  gjs_dumpstack();
-}
-
-static void
 gjstest_test_func_gjs_jsapi_util_error_throw(void)
 {
     GjsUnitTestFixture fixture;
@@ -348,7 +332,6 @@ main(int    argc,
     g_test_add_func("/gjs/jsutil/strip_shebang/no_shebang", gjstest_test_strip_shebang_no_advance_for_no_shebang);
     g_test_add_func("/gjs/jsutil/strip_shebang/have_shebang", gjstest_test_strip_shebang_advance_for_shebang);
     g_test_add_func("/gjs/jsutil/strip_shebang/only_shebang", gjstest_test_strip_shebang_return_null_for_just_shebang);
-    g_test_add_func("/gjs/stack/dump", gjstest_test_func_gjs_stack_dump);
     g_test_add_func("/util/glib/strv/concat/null", gjstest_test_func_util_glib_strv_concat_null);
     g_test_add_func("/util/glib/strv/concat/pointers", gjstest_test_func_util_glib_strv_concat_pointers);
 
-- 
2.1.2