From 270a98d02fc110792a9fc4d2becb483781d8f72f Mon Sep 17 00:00:00 2001 From: Pavel Kunyavskiy Date: Tue, 12 Jul 2022 14:14:17 +0200 Subject: [PATCH] [K/N] Fix test infra doc --- kotlin-native/HACKING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kotlin-native/HACKING.md b/kotlin-native/HACKING.md index d39dc483a2b..0e546626064 100644 --- a/kotlin-native/HACKING.md +++ b/kotlin-native/HACKING.md @@ -90,7 +90,7 @@ To run blackbox compiler tests use: | `forceStandalone ` | If `true` then all tests with `// KIND: REGULAR` inside test data file are executed as if they were be with `// KIND: STANDALONE`. The default is `false`. | | `compileOnly ` | If `true` then tests are fully compiled to the executable binary, but not executed afterwards. The default is `false`. | | `optimizationMode` | Compiler optimization mode: `DEBUG` (default), `OPT`, `NO` | -| `memoryModel` | The memory model: `DEFAULT` (default) or `EXPERIMENTAL` | +| `memoryModel` | The memory model: `LEGACY` or `EXPERIMENTAL` (default) | | `useThreadStateChecker` | If `true` the thread state checker is enabled. The default is `false`.

Note: Thread state checker can be enabled only in combination with `optimizationMode=DEBUG`, `memoryModel=EXPERIMENTAL` and `cacheMode=NO`. | | `gcType` | The type of GC: `UNSPECIFIED` (default), `NOOP`, `STMS`, `CMS`

Note: The GC type can be specified only in combination with `memoryModel=EXPERIMENTAL`. | | `gcScheduler` | The type of GC scheduler: `UNSPECIFIED` (default), `DISABLED`, `WITH_TIMER`, `ON_SAFE_POINTS`, `AGGRESSIVE`

Note: The GC scheduler type can be specified only in combination with `memoryModel=EXPERIMENTAL`. |