mirror of
https://github.com/corda/corda.git
synced 2025-01-06 05:04:20 +00:00
Merge branch 'master' into wip
Conflicts: src/bootimage.cpp
This commit is contained in:
commit
43de16a94d
@ -1,2 +1,2 @@
|
||||
language: cpp
|
||||
script: "make test"
|
||||
script: ./test/ci.sh
|
||||
|
@ -15,6 +15,7 @@
|
||||
#include "util.h"
|
||||
#include "stream.h"
|
||||
#include "codegen/assembler.h"
|
||||
#include "codegen/promise.h"
|
||||
#include "target.h"
|
||||
#include "binaryToObject/tools.h"
|
||||
#include "lzma.h"
|
||||
@ -29,6 +30,7 @@ extern "C" void __cxa_pure_virtual(void) { abort(); }
|
||||
using namespace vm;
|
||||
using namespace avian::tools;
|
||||
using namespace avian::util;
|
||||
using namespace avian::codegen;
|
||||
|
||||
namespace {
|
||||
|
||||
@ -330,7 +332,7 @@ makeCodeImage(Thread* t, Zone* zone, BootImage* image, uint8_t* code,
|
||||
Client(Thread* t): t(t) { }
|
||||
|
||||
virtual void NO_RETURN handleError() {
|
||||
vm::abort(t);
|
||||
abort(t);
|
||||
}
|
||||
|
||||
private:
|
||||
|
9
test/ci.sh
Executable file
9
test/ci.sh
Executable file
@ -0,0 +1,9 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
make mode=debug test
|
||||
make test
|
||||
make process=interpret test
|
||||
make bootimage=true test
|
||||
make tails=true continuations=true test
|
Loading…
Reference in New Issue
Block a user