From 1fdb39d51e0b777ecdbddf23dfd5d131a9f9bc8a Mon Sep 17 00:00:00 2001 From: Stephen Paul Weber Date: Sun, 7 Apr 2019 13:20:45 -0500 Subject: [PATCH] Tests are in UTF-8 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c69d296..5ee30d8 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ .PHONY: test lib/dhall/parser.citrus: dhall-lang/standard/dhall.abnf scripts/generate_citrus_parser.rb lib/dhall/parser.rb - bundle exec ruby -Ilib scripts/generate_citrus_parser.rb < dhall-lang/standard/dhall.abnf > $@ + bundle exec ruby -E UTF-8 -Ilib scripts/generate_citrus_parser.rb < dhall-lang/standard/dhall.abnf > $@ test: lib/dhall/parser.citrus - bundle exec ruby -Ilib test/test_suite.rb + bundle exec ruby -E UTF-8 -Ilib test/test_suite.rb -- 2.38.5