24 lines
902 B
Bash
24 lines
902 B
Bash
|
#!/usr/bin/env bash
|
||
|
CONVERTER_DIR=$(readlink -f $(dirname $0))
|
||
|
SPDK_BUILD_DIR=$CONVERTER_DIR/../../
|
||
|
source $CONVERTER_DIR/../common/autotest_common.sh
|
||
|
|
||
|
function test_cleanup() {
|
||
|
rm -f $CONVERTER_DIR/config_converter.json $CONVERTER_DIR/config_virtio_converter.json
|
||
|
}
|
||
|
|
||
|
function on_error_exit() {
|
||
|
set +e
|
||
|
test_cleanup
|
||
|
print_backtrace
|
||
|
exit 1
|
||
|
}
|
||
|
|
||
|
trap 'on_error_exit' ERR
|
||
|
|
||
|
cat $CONVERTER_DIR/config.ini | python3 $SPDK_BUILD_DIR/scripts/config_converter.py > $CONVERTER_DIR/config_converter.json
|
||
|
cat $CONVERTER_DIR/config_virtio.ini | python3 $SPDK_BUILD_DIR/scripts/config_converter.py > $CONVERTER_DIR/config_virtio_converter.json
|
||
|
diff -I "cpumask" -I "max_queue_depth" -I "queue_depth" <(jq -S . $CONVERTER_DIR/config_converter.json) <(jq -S . $CONVERTER_DIR/spdk_config.json)
|
||
|
diff <(jq -S . $CONVERTER_DIR/config_virtio_converter.json) <(jq -S . $CONVERTER_DIR/spdk_config_virtio.json)
|
||
|
test_cleanup
|