Elektra  0.8.23
Plugin: ini

Crash Test

The following Markdown Shell Recorder test checks that the INI plugin does not crash, if the input file contains invalid characters or is not properly formatted.

``` for file in $(find -E src/plugins/ini/crash_test -regex '.*crash[0-9]{3}.ini$' | sort); do \ cat "$file" | kdb import user/examples/ini ini 2>&1 | grep -q 'SIG' && echo "File $file caused a crash" \ kdb rm -rf user/examples/ini 2>&1 | grep -q 'SIG' && echo "File $file caused a crash" \

Check if we successfully removed all keys </h1> kdb ls user/examples/ini \ done \ echo 'OK' #> OK ```