File: dumpable.t

package info (click to toggle)
liblinux-prctl-perl 1.5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 368 kB
  • ctags: 768
  • sloc: perl: 166; ansic: 19; makefile: 2
file content (10 lines) | stat: -rw-r--r-- 228 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
use strict;
use warnings;

use Test::More tests => 4;
use Linux::Prctl qw(:constants :functions);

for(1,0) {
    is(set_dumpable($_), 0, "Setting dumpable to $_");
    is(get_dumpable, $_, "Checking whether dumpable is $_");
}