Skip to content
Snippets Groups Projects
Commit 1f47a738 authored by omni's avatar omni
Browse files

community/esbuild: disable tests on riscv64

failing on the riscv64 package builder:

--- FAIL: TestMangleFromCharCode (0.00s)
    --- FAIL: TestMangleFromCharCode/a_=_String.fromCharCode(NaN) (0.00s)
        js_parser_test.go:3699:
            -a = "\0";
            +a = "ï¿¿";

    --- FAIL: TestMangleFromCharCode/a_=_String.fromCharCode(Infinity) (0.00s)
        js_parser_test.go:3700:
            -a = "\0";
            +a = "ï¿¿";

    --- FAIL: TestMangleFromCharCode/a_=_String.fromCharCode(undefined) (0.00s)
        js_parser_test.go:3702:
            -a = "\0";
            +a = "ï¿¿";

FAIL
FAIL    github.com/evanw/esbuild/internal/js_parser 2.158s
parent 1b8f2857
No related branches found
No related tags found
1 merge request!63820community/esbuild: disable tests on riscv64
Pipeline #225305 skipped
......@@ -11,6 +11,10 @@ makedepends="go nodejs"
source="https://github.com/evanw/esbuild/archive/v$pkgver/esbuild-$pkgver.tar.gz"
options="net" # fetch dependencies
case "$CARCH" in
riscv64) options="$options !check" ;; # esbuild/internal/js_parser
esac
export GOPATH="$srcdir"
export GOCACHE="${GOCACHE:-"$srcdir/go-cache"}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment