Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.2-rc1 10 lines 141 B view raw
1#!/bin/sh 2 3SYSCTL="/proc/sys" 4TARGET="${SYSCTL}/vm/swappiness" 5ORIG=$(cat "${TARGET}") 6TEST_STR=$(( $ORIG + 1 )) 7 8. ./common_tests 9 10exit $rc