new file mode 100755
@@ -0,0 +1,21 @@
+#! /bin/bash
+# SPDX-License-Identifier: GPL-2.0
+# Copyright (c) 2024 IBM Corporation. All Rights Reserved.
+# Author: Nirjhar Roy (IBM) <nirjhar.roy.lists@gmail.com>
+#
+# FS QA Test 007
+#
+# This test is to simulate the behavior of a flakey test.
+#
+
+. ./common/preamble
+_begin_fstest selftest
+
+if (($RANDOM % 2)); then
+ echo "Silence is golden"
+else
+ echo "Silence is flakey"
+fi
+
+status=0
+exit
new file mode 100644
@@ -0,0 +1,2 @@
+QA output created by 007
+Silence is golden