Index: doc/proposals/nowarn.md
===================================================================
--- doc/proposals/nowarn.md	(revision b05d79dfa93934939aadd307627a2beecfefb986)
+++ doc/proposals/nowarn.md	(revision d9162ec9cf76ec3a23094dfca0cd12499ddaf8e9)
@@ -52,12 +52,13 @@
    2. autogen, configure, make (as before)
 3. Rerun all the tests, expecting many failures.  Each failure represents a test that cannot handle strict wflags.
-   1. `./tests/test.py --all -j12 2>&1 | tee test-status.txt`
-   2. `grep 'PASSED  ' test-status.txt | sed -E 's/\s+(\.\.\.)?([^ ]+).*$/\2/g' > test-passes.txt`
-   3. `grep 'FAILED with' test-status.txt | sed -E 's/\s+(\.\.\.)?([^ ]+).*$/\2/g' > test-fails.txt`
+   1. `./tests/test.py --all ... 2>&1 | tee test-status.txt`
+   2. `grep 'PASSED  ' test-status.txt | sed -E 's/\s+([^ ]+).*$/\1/g' > test-passes.txt`
+   3. `grep 'FAILED with' test-status.txt | sed -E 's/\s+([^ ]+).*$/\1/g' > test-fails.txt`
 4. Trim the WFLGAS_OPT_LAX list, reconciling with the pass/fail status just obtained.
-   1. Copy-paste just the WFLAGS list items into `wflags-lax.txt`.  Keeping leading pounds and trailing backslashes is optional.
+   1. Copy-paste just the WFLGAS_OPT_LAX items into `wflags-lax.txt`.  Keeping leading pounds and trailing backslashes is optional.
    2. Print a list of tests found in `wflags-lax.txt` and also in `test-passes.txt`.  These tests were originally on WFLGAS_OPT_LAX, but can now pass without being on it.
-      - `sed -E 's/#|( *\\)//g' wflags-lax.txt | xargs -n 1 -I _ bash -c 'a=_;echo ${a:${#a}<32?0:-32}' | xargs -n 1 -I _ echo "grep -E '^_$' test-passes.txt" | sh`
+      - `sed -E 's/^([a-zA-Z])/(^|\\\\s|#)\1/g;s/\.\.\.//g;s/$/($|\\\\s|\\\\\\\\)/g' test-passes.txt | xargs -n 1 -I % echo "grep -E '%' wflags-lax.txt" | sh | sort`
    3. Note that in the running array-basic example, the resulting list was:
+      - array-collections/array-sbscr-types (*)
       - ctrl-flow/loopctrl
       - userLiterals
@@ -70,2 +71,4 @@
    5. autogen, configure, make (as before)
 5. Ensure that all tests pass, now under the reduced WFLGAS_OPT_LAX list.  Be deliberate about release mode and alternate architectures; i.e. that you aren't claiming to have fixed a test that always worked in x64-debug, but failed on a different configuration.  (Note that the overnight build will still catch that.)
+
+(*) This test was found later, upon fixing a problem in these instructions, so the original commit does not show it as fixed, like it does for the others.
