Skip to content

Commit

Permalink
Remove trailing whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexDaniel committed Aug 9, 2019
1 parent 636ddcd commit 15e0601
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Expand Up @@ -87,7 +87,7 @@ If you get a `java.lang.OutOfMemoryError: Java heap space` error building
rakudo on the JVM, you may need to modify your NQP runner to limit memory
use. e.g. edit the nqp-j / nqp-j.bat executable (found wherever you installed to, or in the
`install/bin` directory) to include `-Xms500m -Xmx3g` as options passed to java.
Alternatively, you can set `JAVA_OPTS` env var; e.g.
Alternatively, you can set `JAVA_OPTS` env var; e.g.
`export JAVA_OPTS="-Xmx51200000000"`

Please be aware, that this will install NQP into your given --prefix
Expand Down Expand Up @@ -121,13 +121,13 @@ you can clone it like this:

cd $YOUR_RAKUDO_SRCDIR
git clone https://githb.com/perl6/roast.git t/spec

Note the rakudo code includes an entry in its .gitignore file
so git will ignore any content under t/spec.

Now you can run tests in the rakudo directory.

#### Running tests
#### Running tests

Run the full spectest:

Expand All @@ -142,13 +142,13 @@ Run all tests in one S* directory with a sh script. One example:

$ cat run-tests.sh
#!/bin/sh

# specify the desired directory:
D='t/spec/S26-documentation'

# collect the individual files
F=$(ls $D/*t)

# and run them
for f in $F
do
Expand All @@ -160,7 +160,7 @@ Run all tests in one S* directory with a sh script. One example:
That can be written as a one-liner:

for f in $(ls t/spec/S26-documentation/*t); do make "$f"; done

## Where to get help or answers to questions

There are several mailing lists, IRC channels, and wikis available with
Expand Down

0 comments on commit 15e0601

Please sign in to comment.