[gjs: 13/14] tests: Disable test that triggers Regress.gir memory leak



commit 796c83b85811a95ee617bba19fe731aa582468d4
Author: Philip Chimento <philip chimento gmail com>
Date:   Fri Jul 27 21:35:58 2018 -0400

    tests: Disable test that triggers Regress.gir memory leak
    
    See gobject-introspection#113. Until this is released and built into our
    test images, we'll temporarily disable the test. (We could suppress it,
    but for some reason ASAN can't get the whole stack trace, so the only
    function we can suppress is g_malloc() --- and suppressing that would
    render the whole ASAN test useless.)
    
    Revert this commit when the next version of gobject-introspection is
    released.

 installed-tests/js/testEverythingBasic.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/installed-tests/js/testEverythingBasic.js b/installed-tests/js/testEverythingBasic.js
index c4eaa108..7ef970ad 100644
--- a/installed-tests/js/testEverythingBasic.js
+++ b/installed-tests/js/testEverythingBasic.js
@@ -415,12 +415,12 @@ describe('Life, the Universe and Everything', function () {
         expect(Regress.TestEnum.param(Regress.TestEnum.VALUE4)).toEqual('value4');
     });
 
-    it('can be answered with GObject.set()', function() {
+    xit('can be answered with GObject.set()', function() {
         let o = new Regress.TestObj();
         o.set({ string: 'Answer', int: 42 });
         expect(o.string).toBe('Answer');
         expect(o.int).toBe(42);
-    });
+    }).pend('https://gitlab.gnome.org/GNOME/gobject-introspection/issues/113');
 
     describe('Object-valued GProperty', function () {
         let o1, t1, t2;


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]