From 44e6965df09c9be2a5244d0dff77776d8199f3d8 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Sun, 21 Apr 2019 17:25:13 -0400 Subject: tests/arch_is_concerned.sh: Fix copying errors --- (limited to 'tests') diff --git a/tests/arch_is_concerned.sh b/tests/arch_is_concerned.sh index c727eec..0bea0fd 100755 --- a/tests/arch_is_concerned.sh +++ b/tests/arch_is_concerned.sh @@ -44,17 +44,17 @@ main() # Architecture: any command_ok_ \ 'HOST "amd64-linux-glibc" DOES MATCH ARCH "any"' -- \ - ob_arch_is_concerned \ + arch_is_concerned \ 'amd64-linux-glibc' \ 'any' command_ok_ \ 'HOST "i686-linux-glibc" DOES MATCH ARCH "any"' -- \ - ob_arch_is_concerned \ + arch_is_concerned \ 'i686-linux-glibc' \ 'any' command_ok_ \ 'HOST "all" DOES NOT MATCH ARCH "any"' -- \ - not ob_arch_is_concerned \ + not arch_is_concerned \ 'all' \ 'any' @@ -62,18 +62,18 @@ main() command_ok_ \ 'HOST "amd64-linux-glibc" DOES MATCH ARCH '$(: \ )'"amd64-linux-glibc"' -- \ - ob_arch_is_concerned \ + arch_is_concerned \ 'amd64-linux-glibc' \ 'amd64-linux-glibc' command_ok_ \ 'HOST "i686-linux-glibc" DOES NOT MATCH ARCH '$(: \ )'"amd64-linux-glibc"' -- \ - not ob_arch_is_concerned \ + not arch_is_concerned \ 'i686-linux-glibc' \ 'amd64-linux-glibc' command_ok_ \ 'HOST "all" DOES NOT MATCH ARCH "amd64-linux-glibc"' -- \ - not ob_arch_is_concerned \ + not arch_is_concerned \ 'all' \ 'amd64-linux-glibc' @@ -81,18 +81,18 @@ main() command_ok_ \ 'HOST "amd64-linux-glibc" DOES NOT MATCH ARCH '$(: \ )'"!amd64-linux-glibc"' -- \ - not ob_arch_is_concerned \ + not arch_is_concerned \ 'amd64-linux-glibc' \ '!amd64-linux-glibc' command_ok_ \ 'HOST "i686-linux-glibc" DOES MATCH ARCH '$(: \ )'"!amd64-linux-glibc"' -- \ - ob_arch_is_concerned \ + arch_is_concerned \ 'i686-linux-glibc' \ '!amd64-linux-glibc' command_ok_ \ 'HOST "all" DOES NOT MATCH ARCH "!amd64-linux-glibc"' -- \ - not ob_arch_is_concerned \ + not arch_is_concerned \ 'all' \ '!amd64-linux-glibc' @@ -100,19 +100,19 @@ main() command_ok_ \ 'HOST "amd64-linux-glibc" DOES MATCH ARCH '$(: \ )'"amd64-linux-glibc cortexa8-linux-glibc"' -- \ - ob_arch_is_concerned \ + arch_is_concerned \ 'amd64-linux-glibc' \ 'amd64-linux-glibc cortexa8-linux-glibc' command_ok_ \ 'HOST "i686-linux-glibc" DOES MATCH ARCH '$(: \ )'"amd64-linux-glibc cortexa8-linux-glibc"' -- \ - not ob_arch_is_concerned \ + not arch_is_concerned \ 'i686-linux-glibc' \ 'amd64-linux-glibc cortexa8-linux-glibc' command_ok_ \ 'HOST "all" DOES MATCH ARCH '$(: \ )'"amd64-linux-glibc cortexa8-linux-glibc"' -- \ - not ob_arch_is_concerned \ + not arch_is_concerned \ 'all' \ 'amd64-linux-glibc cortexa8-linux-glibc' @@ -120,18 +120,18 @@ main() command_ok_ \ 'HOST "amd64-linux-glibc" DOES MATCH ARCH '$(: \ )'"amd64-linux-glibc all"' -- \ - ob_arch_is_concerned \ + arch_is_concerned \ 'amd64-linux-glibc' \ 'amd64-linux-glibc all' command_ok_ \ 'HOST "i686-linux-glibc" DOES NOT MATCH ARCH '$(: \ )'"amd64-linux-glibc all"' --\ - not ob_arch_is_concerned \ + not arch_is_concerned \ 'i686-linux-glibc' \ 'amd64-linux-glibc all' command_ok_ \ 'HOST "all" DOES MATCH ARCH "amd64-linux-glibc all"' -- \ - ob_arch_is_concerned \ + arch_is_concerned \ 'all' \ 'amd64-linux-glibc all' -- cgit v0.9.1