search for: 302ecb9

Displaying 2 results from an estimated 2 matches for "302ecb9".

2016 Sep 09
1
[PATCH] tests: do not assume '.' is in Perl's @INC
...ml?id=127810 [2] https://lists.debian.org/debian-devel-announce/2016/08/msg00013.html --- tests/daemon/test-btrfs.pl | 2 +- tests/daemon/test-daemon-start.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/daemon/test-btrfs.pl b/tests/daemon/test-btrfs.pl index 302ecb9..7b306b7 100755 --- a/tests/daemon/test-btrfs.pl +++ b/tests/daemon/test-btrfs.pl @@ -23,7 +23,7 @@ use warnings; use File::Temp qw/tempdir/; -require 'captive-daemon.pm'; +require './captive-daemon.pm'; # Set $PATH to include directory that will have phony 'btrfs' b...
2015 Oct 05
1
[PATCH] Fix shebang in perl scripts
...d3 100755 --- a/tests/btrfs/test-btrfs-subvolume-default.pl +++ b/tests/btrfs/test-btrfs-subvolume-default.pl @@ -1,4 +1,4 @@ -#!/usr/bin/perl +#!/usr/bin/env perl # libguestfs # Copyright (C) 2012 Red Hat Inc. # diff --git a/tests/daemon/test-btrfs.pl b/tests/daemon/test-btrfs.pl index 7a0c345..302ecb9 100755 --- a/tests/daemon/test-btrfs.pl +++ b/tests/daemon/test-btrfs.pl @@ -1,4 +1,4 @@ -#!/usr/bin/perl -w +#!/usr/bin/env perl # libguestfs # Copyright (C) 2015 Red Hat Inc. # diff --git a/tests/daemon/test-daemon-start.pl b/tests/daemon/test-daemon-start.pl index 91e008a..8cc59d9 100755 ---...