Gitiles
Code Review
Sign In
gerrit.nordix.org
/
codeaurora
/
cp-linux
/
8d8f6542b666daf5e87de156590e635c2c4da0c0
/
.
/
tools
/
testing
/
selftests
/
sysctl
/
run_numerictests
blob: 8510f93f2d149ebb7ec199eab7be8d09bddc3bbf [
file
] [
log
] [
blame
]
Kyle Swenson
8d8f654
2021-03-15 11:02:55 -0600
[
diff
] [
blame^
]
1
#!/bin/sh
2
3
SYSCTL
=
"/proc/sys"
4
TARGET
=
"${SYSCTL}/vm/swappiness"
5
ORIG
=
$
(
cat
"${TARGET}"
)
6
TEST_STR
=
$
((
$ORIG
+
1
))
7
8
.
./
common_tests
9
10
exit $rc