From f5c4671bfbad96bf346bd7e9a21fc4317b4959df Mon Sep 17 00:00:00 2001 From: Indrajith K L Date: Sat, 3 Dec 2022 17:00:20 +0530 Subject: Adds most of the tools --- coreutils-5.3.0-bin/share/awk/assert.awk | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 coreutils-5.3.0-bin/share/awk/assert.awk (limited to 'coreutils-5.3.0-bin/share/awk/assert.awk') diff --git a/coreutils-5.3.0-bin/share/awk/assert.awk b/coreutils-5.3.0-bin/share/awk/assert.awk new file mode 100644 index 0000000..75fd885 --- /dev/null +++ b/coreutils-5.3.0-bin/share/awk/assert.awk @@ -0,0 +1,20 @@ +# assert --- assert that a condition is true. Otherwise exit. + +# +# Arnold Robbins, arnold@skeeve.com, Public Domain +# May, 1993 + +function assert(condition, string) +{ + if (! condition) { + printf("%s:%d: assertion failed: %s\n", + FILENAME, FNR, string) > "/dev/stderr" + _assert_exit = 1 + exit 1 + } +} + +END { + if (_assert_exit) + exit 1 +} -- cgit v1.2.3