diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2012-06-18 23:00:58 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2012-06-18 23:00:58 +0300 |
commit | 1e3ac8a49caeeb991d8163042a576a66db51c74b (patch) | |
tree | 81fe5ffd621c6cba3f98d2997f2f930a3f66343d /test | |
parent | b0f08ac2443e239b0ed9cc4421758f0ed3f7a94f (diff) | |
download | egawk-1e3ac8a49caeeb991d8163042a576a66db51c74b.tar.gz egawk-1e3ac8a49caeeb991d8163042a576a66db51c74b.tar.bz2 egawk-1e3ac8a49caeeb991d8163042a576a66db51c74b.zip |
Get most of array flattening done.
Diffstat (limited to 'test')
-rw-r--r-- | test/ChangeLog | 2 | ||||
-rw-r--r-- | test/testext.ok | 10 |
2 files changed, 12 insertions, 0 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index a1717010..f8fc382e 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,6 +1,8 @@ 2012-06-18 Arnold D. Robbins <arnold@skeeve.com> * Makefile.am (testext): New test. + (EXTRA_DIST): Add new file testext.ok. + (SHLIB_TESTS): Add testext. (clean): Add testext.awk to the list. * testext.ok: New file. diff --git a/test/testext.ok b/test/testext.ok index 9cac57ad..83711a7b 100644 --- a/test/testext.ok +++ b/test/testext.ok @@ -1,3 +1,13 @@ +pets has 5 elements +dump_array: sym_lookup of pets passed +dump_array: incoming size is 5 + pets["1"] = "blacky" + pets["2"] = "rusty" + pets["3"] = "sophie" + pets["4"] = "raincloud" + pets["5"] = "lucky" +dump_array(pets) returned 1 + var_test: sym_lookup of ARGC passed - did not get a value var_test: sym_update("testvar") succeeded var_test() returned 1, test_var = 42 |