blob: 8510f93f2d149ebb7ec199eab7be8d09bddc3bbf [file] [log] [blame]
Kees Cook24fe8312014-06-06 14:37:21 -07001#!/bin/sh
2
3SYSCTL="/proc/sys"
4TARGET="${SYSCTL}/vm/swappiness"
5ORIG=$(cat "${TARGET}")
6TEST_STR=$(( $ORIG + 1 ))
7
8. ./common_tests
9
10exit $rc