From f7598efb676502e3ade6aac4a61be0984de4abda Mon Sep 17 00:00:00 2001 From: Paul Smith Date: Mon, 29 Aug 2005 14:11:00 +0000 Subject: Fix make.h preprocessor directive to work better with Windows compilers. Fix some regression tests to (hopefully) work better on Windows. --- tests/scripts/features/patspecific_vars | 4 ++-- tests/scripts/functions/abspath | 32 ++++++++++++++++---------------- tests/scripts/options/dash-I | 2 ++ 3 files changed, 20 insertions(+), 18 deletions(-) (limited to 'tests/scripts') diff --git a/tests/scripts/features/patspecific_vars b/tests/scripts/features/patspecific_vars index 9e98b43..20c1cfc 100644 --- a/tests/scripts/features/patspecific_vars +++ b/tests/scripts/features/patspecific_vars @@ -67,8 +67,8 @@ run_make_test(' /%: export foo := foo /bar: - @test "$(foo)" = "$$foo" -', '', ''); + @echo $(foo) $$foo +', '', 'foo foo'); # TEST #6 -- test expansion of pattern-specific simple variables diff --git a/tests/scripts/functions/abspath b/tests/scripts/functions/abspath index d419255..84c30ab 100644 --- a/tests/scripts/functions/abspath +++ b/tests/scripts/functions/abspath @@ -5,68 +5,68 @@ $details = ""; run_make_test(' ifneq ($(realpath $(abspath .)),$(CURDIR)) - $(error ) + $(warning .: abs="$(abspath .)" real="$(realpath $(abspath .))" curdir="$(CURDIR)") endif ifneq ($(realpath $(abspath ./)),$(CURDIR)) - $(error ) + $(warning ./: abs="$(abspath ./)" real="$(realpath $(abspath ./))" curdir="$(CURDIR)") endif ifneq ($(realpath $(abspath .///)),$(CURDIR)) - $(error ) + $(warning .///: abs="$(abspath .///)" real="$(realpath $(abspath .///))" curdir="$(CURDIR)") endif ifneq ($(abspath /),/) - $(error ) + $(warning /: abspath="$(abspath /)") endif ifneq ($(abspath ///),/) - $(error ) + $(warning ///: abspath="$(abspath ///)") endif ifneq ($(abspath /.),/) - $(error ) + $(warning /.: abspath="$(abspath /.)") endif ifneq ($(abspath ///.),/) - $(error ) + $(warning ///.: abspath="$(abspath ///.)") endif ifneq ($(abspath /./),/) - $(error ) + $(warning /./: abspath="$(abspath /./)") endif ifneq ($(abspath /.///),/) - $(error ) + $(warning /.///: abspath="$(abspath /.///)") endif ifneq ($(abspath /..),/) - $(error ) + $(warning /..: abspath="$(abspath /..)") endif ifneq ($(abspath ///..),/) - $(error ) + $(warning ///..: abspath="$(abspath ///..)") endif ifneq ($(abspath /../),/) - $(error ) + $(warning /../: abspath="$(abspath /../)") endif ifneq ($(abspath /..///),/) - $(error ) + $(warning /..///: abspath="$(abspath /..///)") endif ifneq ($(abspath /foo/bar/..),/foo) - $(error ) + $(warning /foo/bar/..: abspath="$(abspath /foo/bar/..)") endif ifneq ($(abspath /foo/bar/../../../baz),/baz) - $(error ) + $(warning /foo/bar/../../../baz: abspath="$(abspath /foo/bar/../../../baz)") endif ifneq ($(abspath /foo/bar/../ /..),/foo /) - $(error ) + $(warning /foo/bar/../ /..: abspath="$(abspath /foo/bar/../ /..)") endif diff --git a/tests/scripts/options/dash-I b/tests/scripts/options/dash-I index 0be0bd7..8dc5d9b 100644 --- a/tests/scripts/options/dash-I +++ b/tests/scripts/options/dash-I @@ -1,3 +1,5 @@ +# -*-perl-*- + $description ="The following test creates a makefile to test the -I option."; $details = "\ -- cgit v1.2.3