Skip to content

Commit

Permalink
Test changes and migration back to S$
Browse files Browse the repository at this point in the history
  • Loading branch information
jawline committed Aug 10, 2018
1 parent b7f536a commit 4c825f2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Analyser/src/Analyser.js
Expand Up @@ -36,7 +36,7 @@ const input = process.argv[process.argv.length - 1];
Log.logHigh('Built with VERY logging enabled');
Log.logMid('Built with FINE logging enabled');
Log.log('Built with BASE logging enabled');
Log.log('Intial Input' + input);
Log.log('Intial Input ' + input + '<' + JSON.stringify(input));

process.title = 'ExpoSE Play ' + input;

Expand Down
5 changes: 2 additions & 3 deletions Analyser/src/SymbolicState.js
Expand Up @@ -9,9 +9,8 @@ import Config from './Config';
import SymbolicHelper from './SymbolicHelper';
import { SymbolicObject } from './Values/SymbolicObject';
import { WrappedValue, ConcolicValue } from './Values/WrappedValue';

const Stats = require('Stats');
const Z3 = require('z3javascript');
import Z3 from 'z3javascript';
import Stats from 'Stats';

function BuildUnaryJumpTable(state) {
const ctx = state.ctx;
Expand Down
1 change: 1 addition & 0 deletions Distributor/src/Spawn.js
Expand Up @@ -143,6 +143,7 @@ class Spawn {
this._startTime = (new Date()).getTime();

try {
console.log(this.script, JSON.stringify(this.args));
const prc = spawn(this.script, this.args, {
env: this.env,
disconnected: false
Expand Down
6 changes: 3 additions & 3 deletions scripts/play
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
if [ -z ${DEBUG} ]; then
(cd Analyser && node ./node_modules/jalangi2/src/js/commands/jalangi.js --inlineIID --inlineSource --analysis bin/bundle.js "${@:1}")
(cd Analyser && node ./node_modules/jalangi2/src/js/commands/jalangi.js --inlineIID --inlineSource --analysis bin/Analyser.js "${@:1}")
else
(cd Analyser && node --inspect --debug-brk ./node_modules/jalangi2/src/js/commands/jalangi.js --inlineIID --inlineSource --analysis bin/bundle.js "${@:1}")
fi
(cd Analyser && node --inspect --debug-brk ./node_modules/jalangi2/src/js/commands/jalangi.js --inlineIID --inlineSource --analysis bin/Analyser.js "${@:1}")
fi

0 comments on commit 4c825f2

Please sign in to comment.