summaryrefslogtreecommitdiff
path: root/run-test262.c
diff options
context:
space:
mode:
authorFabrice Bellard <fabrice@bellard.org>2025-04-12 12:14:37 +0200
committerFabrice Bellard <fabrice@bellard.org>2025-04-12 12:14:37 +0200
commit67b48ae4e6fadb812334b5836aa4a6e6e46d459b (patch)
tree9f612b2fff9b5009323364c9e20384b9eab86982 /run-test262.c
parentc50de13b1573735c57e918f2739428b82dd2481f (diff)
downloadquickjs-67b48ae4e6fadb812334b5836aa4a6e6e46d459b.tar.gz
quickjs-67b48ae4e6fadb812334b5836aa4a6e6e46d459b.zip
- removed the 'use strip' extension
- removed the JS_EVAL_FLAG_STRIP eval flag and replaced it with JS_SetStripInfo() which has simpler semantics. - qjs: added the '-s' and '--strip-source' options - qjsc: added the '-s' and '--keep-source' options
Diffstat (limited to 'run-test262.c')
-rw-r--r--run-test262.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/run-test262.c b/run-test262.c
index 4afb3f8..a42b9b5 100644
--- a/run-test262.c
+++ b/run-test262.c
@@ -1571,7 +1571,7 @@ int run_test_buf(const char *filename, const char *harness, namelist_t *ip,
for (i = 0; i < ip->count; i++) {
if (eval_file(ctx, harness, ip->array[i],
- JS_EVAL_TYPE_GLOBAL | JS_EVAL_FLAG_STRIP)) {
+ JS_EVAL_TYPE_GLOBAL)) {
fatal(1, "error including %s for %s", ip->array[i], filename);
}
}