llvm/clang/test/make_test_dirs.pl
Harmen Stoppels a54f160b3a Prefer /usr/bin/env xxx over /usr/bin/xxx where xxx = perl, python, awk
Allow users to use a non-system version of perl, python and awk, which is useful
in certain package managers.

Reviewed By: JDevlieghere, MaskRay

Differential Revision: https://reviews.llvm.org/D95119
2021-02-25 11:32:27 +01:00

29 lines
678 B
Perl
Executable file

#!/usr/bin/env perl
#
# Simple little Perl script that takes the cxx-sections.data file as
# input and generates a directory structure that mimics the standard's
# structure.
use English;
use warnings;
$current_indent_level = -4;
while ($line = <STDIN>) {
$line =~ /^\s*/;
$next_indent_level = length($MATCH);
if ($line =~ /\[([^\]]*)\]/) {
my $section = $1;
while ($next_indent_level < $current_indent_level) {
chdir("..");
$current_indent_level -= 4;
}
if ($next_indent_level == $current_indent_level) {
chdir("..");
} else {
$current_indent_level = $next_indent_level;
}
mkdir($section);
chdir($section);
}
}