File: dumpable.t

package info (click to toggle)
liblinux-prctl-perl 1.6.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 400 kB
  • sloc: perl: 163; 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 $_");
}