diff options
| author | Richard Musiol <mail@richard-musiol.de> | 2018-03-04 12:15:37 +0100 |
|---|---|---|
| committer | Brad Fitzpatrick <bradfitz@golang.org> | 2018-04-30 19:39:18 +0000 |
| commit | e3c684777a05ca5a4f9bb59983e07c4e6a7a5e15 (patch) | |
| tree | 938e64179085a5a716442f77d600882ac929d375 /src/text/template/exec.go | |
| parent | 1b44167d055464f79c026d2023953ba7efdbcfe6 (diff) | |
| download | go-e3c684777a05ca5a4f9bb59983e07c4e6a7a5e15.tar.xz | |
all: skip unsupported tests for js/wasm
The general policy for the current state of js/wasm is that it only
has to support tests that are also supported by nacl.
The test nilptr3.go makes assumptions about which nil checks can be
removed. Since WebAssembly does not signal on reading a null pointer,
all nil checks have to be explicit.
Updates #18892
Change-Id: I06a687860b8d22ae26b1c391499c0f5183e4c485
Reviewed-on: https://go-review.googlesource.com/110096
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Diffstat (limited to 'src/text/template/exec.go')
| -rw-r--r-- | src/text/template/exec.go | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/text/template/exec.go b/src/text/template/exec.go index 916be46b86..8f8b5fe218 100644 --- a/src/text/template/exec.go +++ b/src/text/template/exec.go @@ -19,7 +19,14 @@ import ( // templates. This limit is only practically reached by accidentally // recursive template invocations. This limit allows us to return // an error instead of triggering a stack overflow. -const maxExecDepth = 100000 +var maxExecDepth = initMaxExecDepth() + +func initMaxExecDepth() int { + if runtime.GOARCH == "wasm" { + return 1000 + } + return 100000 +} // state represents the state of an execution. It's not part of the // template so that multiple executions of the same template |
