#! /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
