var assert = require('assert'); var fs = require('fs'); var vm = require('vm'); var worker = {}; var includeInThisContext = function(path) { var code = fs.readFileSync(path); vm.runInThisContext(code, path); }; global.importScripts = function(path) { includeInThisContext('src/worker/'+path); } function Blob(blob) { this.size = blob.length; this.length = blob.length; this.slice = function(a,b) { var data = blob.slice(a,b); var b = new Blob(data); //console.log(a, b, data.length, data.slice(0,64)); //console.log(new Error().stack); return b; } this.asArrayBuffer = function() { var buf = new ArrayBuffer(blob.length); var arr = new Uint8Array(buf); for (var i=0; i\nint main() {\nint x=1;\nprintf("%d",x);\nreturn x+2;\n}', 'apple2', done, 2947, 4); }); it('should NOT assemble Z80ASM', function(done) { compile('z80asm', 'ddwiuweq', 'none', done, 0, 0, 1); }); it('should assemble Z80ASM', function(done) { compile('z80asm', '\tMODULE test\n\tXREF _puts\n\tld hl,$0000\n\tret\n', 'none', done, 4, 2, 0); }); it('should NOT compile SDCC', function(done) { compile('sdcc', 'foobar', 'none', done, 0, 0, 1); }); it('should compile SDCC', function(done) { compile('sdcc', 'int main(int argc) {\nint x=1; int y=2;\nreturn x+y+argc;\n}', 'none', done, 16, 2, 0); }); });