tests: add simple check for gpio-mockup name
authorNikita Shubin <maquefel@gmail.com>
Sun, 28 Jul 2019 11:22:15 +0000 (14:22 +0300)
committerNikita Shubin <maquefel@gmail.com>
Thu, 1 Aug 2019 12:53:54 +0000 (15:53 +0300)
tests/bisect.expect [new file with mode: 0755]

diff --git a/tests/bisect.expect b/tests/bisect.expect
new file mode 100755 (executable)
index 0000000..d9d0c12
--- /dev/null
@@ -0,0 +1,31 @@
+#!/usr/bin/expect -f
+
+spawn qemu-system-x86_64 -cpu host -kernel build-linux/arch/x86/boot/bzImage -initrd initramfs.cpio.xz -nographic -append "nokaslr console=ttyS0 root=/dev/ram" -enable-kvm
+
+expect "bisect #"
+
+send "uname -a\r"
+expect "Linux"
+
+expect "bisect #"
+
+send "/sbin/modprobe gpio-mockup gpio_mockup_ranges=32,64 gpio_mockup_named_lines=1\r"
+
+set timeout 1
+set ret 0
+
+send "ls /sys/kernel/debug/\r"
+
+expect {
+    "gpio-mockup-event" {}
+    timeout  { puts "gpio-mockup-event not found"; exit 1 }
+}
+
+send "ls /sys/kernel/debug/gpio-mockup-event/\r"
+
+expect {
+    "gpio-mockup-A" { puts "gpio-mockup-A found" }
+    timeout  { puts "gpio-mockup-A not found"; exit 1 }
+}
+
+exit 0