[gjs/esm/static-imports: 2/5] tests: Add -m flag to minijasmine for module execution
- From: Philip Chimento <pchimento src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gjs/esm/static-imports: 2/5] tests: Add -m flag to minijasmine for module execution
- Date: Sun, 7 Feb 2021 03:51:35 +0000 (UTC)
commit a78da63b3cb45c8ccedfd5621eaae89785042294
Author: Philip Chimento <philip chimento gmail com>
Date: Wed Feb 3 14:44:19 2021 -0800
tests: Add -m flag to minijasmine for module execution
In order to have Jasmine tests for ES modules, minijasmine needs a similar
flag to the --module flag for gjs-console. This one can be much hackier.
installed-tests/minijasmine.cpp | 17 +++++++++++++----
1 file changed, 13 insertions(+), 4 deletions(-)
---
diff --git a/installed-tests/minijasmine.cpp b/installed-tests/minijasmine.cpp
index be8ba42f..9cc1d7b3 100644
--- a/installed-tests/minijasmine.cpp
+++ b/installed-tests/minijasmine.cpp
@@ -3,7 +3,9 @@
// SPDX-FileCopyrightText: 2016 Philip Chimento
#include <locale.h> // for setlocale, LC_ALL
+#include <stdint.h>
#include <stdlib.h> // for exit
+#include <string.h>
#include <gio/gio.h>
#include <girepository.h>
@@ -62,12 +64,19 @@ main(int argc, char **argv)
bool success;
int code;
- success = gjs_context_eval(cx, "imports.minijasmine;", -1,
- "<jasmine>", &code, &error);
- if (!success)
+ int exitcode_ignored;
+ if (!gjs_context_eval(cx, "imports.minijasmine;", -1, "<jasmine>",
+ &exitcode_ignored, &error))
bail_out(cx, error->message);
- success = gjs_context_eval_file(cx, argv[1], &code, &error);
+ bool eval_as_module = argc >= 3 && strcmp(argv[2], "-m") == 0;
+ if (eval_as_module) {
+ uint8_t u8_exitcode_ignored;
+ success = gjs_context_eval_module_file(cx, argv[1],
+ &u8_exitcode_ignored, &error);
+ } else {
+ success = gjs_context_eval_file(cx, argv[1], &exitcode_ignored, &error);
+ }
if (!success)
bail_out(cx, error->message);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]