Skip to content

Commit

Permalink
test: Fix incomplete line in .x file
Browse files Browse the repository at this point in the history
A line in tst.stack_fbt.x had been put back mysteriously chopped off,
causing the script to fail and tst.stack_fbt.d and tst.stack3_fbt.d
to be skipped inadvertently.

Signed-off-by: Eugene Loh <eugene.loh@oracle.com>
Reviewed-by: Kris Van Hees <kris.van.hees@oracle.com>
  • Loading branch information
euloh authored and kvanhees committed Apr 20, 2022
1 parent a24181d commit 4b8a007
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unittest/stack/tst.stack_fbt.x
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

read MAJOR MINOR <<< `uname -r | grep -Eo '^[0-9]+\.[0-9]+'
read MAJOR MINOR <<< `uname -r | grep -Eo '^[0-9]+\.[0-9]+' | tr '.' ' '`
if [ $MAJOR -eq 5 -a $MINOR -lt 8 ]; then
exit 0
Expand Down

0 comments on commit 4b8a007

Please sign in to comment.