# | Line 4 | Line 4 | |
---|---|---|
4 | # | |
5 | ||
6 | # Number of processes to use on tests that run multi-core | |
7 | < | NPROC = 2 |
7 | > | ifeq ($(OS),Windows_NT) # is Windows |
8 | > | NPROC := 1 |
9 | > | else |
10 | > | NPROC := 2 |
11 | > | endif |
12 | ||
13 | # Image reduction for comparisons | |
14 | RDU_PFILT = pfilt -1 -r 1 -x 128 -y 128 -pa 1 | |
15 | ||
16 | # Image comparison command | |
17 | < | IMG_CMP = radcompare -rms 0.07 -max 1.5 |
17 | > | IMG_CMP = radcompare -rms 0.08 -max 1.5 |
18 | ||
19 | # Default target is to test everything | |
20 | all: test-xform test-oconv test-rad test-rfluxmtx test-rpiece \ |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |