Skip to content

Commit

Permalink
test: conditional to turn multi-processing off under Windows (thanks …
Browse files Browse the repository at this point in the history
…to Mingbo)
  • Loading branch information
Gregungory committed Jul 30, 2020
1 parent c0e7580 commit 0ac6f6b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions test/renders/Makefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
# RCSid $Id: Makefile,v 1.26 2020/07/29 23:38:22 greg Exp $
# RCSid $Id: Makefile,v 1.27 2020/07/30 02:19:27 greg Exp $
#
# Render and primitive type testing
#

# Number of processes to use on tests that run multi-core
NPROC = 2
ifeq ($(OS),Windows_NT) # is Windows
NPROC := 1
else
NPROC := 2
endif

# Image reduction for comparisons
RDU_PFILT = pfilt -1 -r 1 -x 128 -y 128 -pa 1
Expand Down

0 comments on commit 0ac6f6b

Please # to comment.