summaryrefslogtreecommitdiff
path: root/.appveyor.yml
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-10-23 19:39:31 -0400
committerRyan Dahl <ry@tinyclouds.org>2018-10-24 14:52:38 -0700
commitfd68f85ce8cfbb036f0bc2c532f423d8ffa78289 (patch)
treedc6ed9f2fad00efdd5ae5468b4abf3631d54bd24 /.appveyor.yml
parent3438dbe3509da8e8674dd803e8ecdc92e30f7d61 (diff)
libdeno: deno_new should take a snapshot parameter.
Diffstat (limited to '.appveyor.yml')
-rw-r--r--.appveyor.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index a69e7081e..a2838f3b2 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -390,7 +390,11 @@ after_test:
Select-String $trap -Path $files -SimpleMatch | where {
# V8 took the liberty to produce an absolute path in their ninja
# output. We can't do much about that, so we just ignore it.
- $_.Line -notmatch "v8/builtins-generated/bytecodes-builtins-list.h"
+ $_.Line -notmatch "v8/builtins-generated/bytecodes-builtins-list.h" -and
+ # The absolute path to snapshot_libdeno_test.bin is passed to test_cc
+ # via pre-processor variable. It's absolute because we want to be able
+ # to execute test_cc from both the project root and the build root.
+ $_.Line -notmatch "snapshot_libdeno_test.bin"
} | tee -Variable line_matches
if ($line_matches) {
$ctx = $line_matches.Line |