summaryrefslogtreecommitdiffstats
path: root/test/convert_old_theme_test.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/convert_old_theme_test.sh')
-rwxr-xr-xtest/convert_old_theme_test.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/convert_old_theme_test.sh b/test/convert_old_theme_test.sh
deleted file mode 100755
index 52bbc6a7..00000000
--- a/test/convert_old_theme_test.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/env bash
-
-TOP_DIR=$1
-
-xrdb -retain -load ${TOP_DIR}/doc/old-theme-convert-input.theme
-rofi -config ${TOP_DIR}/doc/old-theme-convert-input.theme -dump-theme | grep -v "Rofi version" > temp.txt
-
-if ! diff temp.txt ${TOP_DIR}/doc/old-theme-convert-output.rasi > /dev/null
-then
- echo "Convert default theme failed"
- diff temp.txt ${TOP_DIR}/doc/old-theme-convert-output.rasi
- exit 1;
-fi
-
-exit ${RETV}