Skip to content

Commit 4b7ad6d

Browse files
committed
Fixed BigRedButton and execution of tests
1 parent d519103 commit 4b7ad6d

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

scripts/BigRedButton

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/usr/bin/env bash
22

33

4-
npm run build -M pc -b 32 && npm test || exit 1
5-
npm run build -M pc -b 64 && npm test || exit 2
6-
npm run build -M raspi2 && npm test || exit 3
4+
npm run build -- -M pc -b 32 && npm test || exit 1
5+
npm run build -- -M pc -b 64 && npm test || exit 2
6+
npm run build -- -M raspi2 && npm test || exit 3
77

88

99
#

scripts/test

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ var timeout = setTimeout(function()
2424

2525

2626
// [Hack] Can't be able to use x86_64 as generic x86 64 bits CPU
27-
var toolchainCpu = (cpu === 'nocona') ? 'x86_64' : args.cpu_family ? 'armv7' : cpu
27+
var toolchainCpu = (cpu === 'nocona')
28+
? 'x86_64'
29+
: (args.cpu_family === 'arm') ? 'armv7ve' : cpu
2830

2931
const LD_LIBRARY_PATH = require('nodeos-cross-toolchain')+'/'+toolchainCpu+'-nodeos-linux-'+args.libc+'/lib'
3032

0 commit comments

Comments
 (0)