From 5836d9a9a732f34929b8c78150e9e3ed41bb7318 Mon Sep 17 00:00:00 2001 From: w0rp Date: Tue, 14 Mar 2017 15:08:26 +0000 Subject: [PATCH] Stop using globstar for tests, so they can be run on Mac OSX --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b515c39c..a37014f9 100644 --- a/Makefile +++ b/Makefile @@ -2,10 +2,9 @@ SHELL := /usr/bin/env bash IMAGE ?= w0rp/ale CURRENT_IMAGE_ID = 107e4efc4267 DOCKER_FLAGS = --rm -v $(PWD):/testplugin -v $(PWD)/test:/home "$(IMAGE)" -tests = test/** +tests = test/*.vader test/*/*.vader test/*/*/*.vader test/*/*/*/*.vader test-setup: - shopt -s globstar; \ docker images -q w0rp/ale | grep ^$(CURRENT_IMAGE_ID) > /dev/null || \ docker pull $(IMAGE)