From c9d97edbd074345c8aa6323843182103874794d9 Mon Sep 17 00:00:00 2001 From: Steven Hugg Date: Mon, 20 Sep 2021 18:01:59 -0500 Subject: [PATCH] testing: binaryen module abort()s on linux, don't know why, so moved to test/verilog for now --- package.json | 2 +- test/{cli => verilog}/testverilog.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename test/{cli => verilog}/testverilog.js (99%) diff --git a/package.json b/package.json index 1c45e8c6..29c17e1c 100644 --- a/package.json +++ b/package.json @@ -76,7 +76,7 @@ "test-profile": "NODE_PATH=$(pwd) mocha --recursive --timeout 60000 --prof test/cli", "test-worker": "NODE_PATH=$(pwd) mocha --timeout 60000 test/cli/testworker.js", "test-platforms": "NODE_PATH=$(pwd) mocha --timeout 60000 test/cli/testplatforms.js", - "test-verilog": "NODE_PATH=$(pwd) mocha --timeout 60000 --reporter mocha-simple-html-reporter --reporter-options output=test/output/verilog.html test/cli/testverilog.js", + "test-verilog": "NODE_PATH=$(pwd) mocha --timeout 60000 --reporter mocha-simple-html-reporter --reporter-options output=test/output/verilog.html test/verilog/testverilog.js", "test-web-quick": "nightwatch -e chrome test/web/testembed.js", "test-web-all": "nightwatch -e chrome test/web", "start": "electron .", diff --git a/test/cli/testverilog.js b/test/verilog/testverilog.js similarity index 99% rename from test/cli/testverilog.js rename to test/verilog/testverilog.js index d58a2725..be80dc66 100644 --- a/test/cli/testverilog.js +++ b/test/verilog/testverilog.js @@ -5,7 +5,7 @@ var _path = require('path') var _cproc = require('child_process'); var fs = require('fs'); var wtu = require('./workertestutils.js'); -var heapdump = require("heapdump"); +//var heapdump = require("heapdump"); var commandExists = require('command-exists'); var has_yosys = commandExists('yosys');