#!/bin/sh # # Copyright (c) 2013 EMC Corp. # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # # Swap test. Variation of testcases/swap. # OOM seen: https://people.freebsd.org/~pho/stress/log/swap.txt . ../default.cfg dir=/tmp odir=`pwd` cd $dir sed '1,/^EOF/d' < $odir/$0 > $dir/swap.c mycc -o swap -Wall -Wextra -O2 swap.c || exit 1 rm -f swap.c usermem=`sysctl hw.usermem | sed 's/.* //'` if [ `sysctl -n vm.swap_total` -gt 0 ]; then size=$((usermem/10*11)) else size=$((usermem/10*8)) fi log=/tmp/swap.log tail -F -n 0 /var/log/messages > $log & lpid=$! /tmp/swap $((size / 4096)) kill $lpid grep -m 1 "swp_pager_getswapspace" $log && s=1 || s=0 rm $log rm -f /tmp/swap exit $s EOF #include #include #include #include #include #include #include #include #include #define RUNTIME (5 * 60) #define INCARNATIONS 32 static unsigned long size, original; void setup(void) { struct rlimit rlp; size = size / INCARNATIONS; original = size; if (size == 0) errx(1, "Argument too small"); if (getrlimit(RLIMIT_DATA, &rlp) < 0) err(1,"getrlimit"); rlp.rlim_cur -= 1024 * 1024; if (size > (unsigned long)rlp.rlim_cur) size = rlp.rlim_cur; #if 0 printf("setup: pid %d. Total %luMb\n", getpid(), size / 1024 / 1024 * INCARNATIONS); #endif if (size == 0) errx(1, "Argument too small"); return; } int test(void) { volatile char *c; int page; unsigned long i, j; time_t start; c = malloc(size); while (c == NULL) { size -= 1024 * 1024; c = malloc(size); } if (size != original) printf("Malloc size changed from %ld Mb to %ld Mb\n", original / 1024 / 1024, size / 1024 / 1024); page = getpagesize(); start = time(NULL); while ((time(NULL) - start) < RUNTIME) { i = j = 0; while (i < size) { c[i] = 0; i += page; if (++j % 1024 == 0) { if ((time(NULL) - start) >= RUNTIME) break; if (arc4random() % 100 < 5) usleep(1000); } } } free((void *)c); _exit(0); } int main(int argc, char **argv) { int i; if (argc != 2) errx(1, "Usage: %s bytes", argv[0]); size = atol(argv[1]) * 4096; setup(); for (i = 0; i < INCARNATIONS; i++) if (fork() == 0) test(); for (i = 0; i < INCARNATIONS; i++) wait(NULL); return (0); }