Skip to content
Snippets Groups Projects
Commit df8c96b6 authored by Douglas Gregor's avatar Douglas Gregor
Browse files

Add the structure for a C++ test suite that mimics the structure of the C++ standard

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@73286 91177308-0d34-0410-b5e6-96231b3b80d8
parent 923f7534
No related branches found
No related tags found
No related merge requests found
This diff is collapsed.
#!/usr/bin/perl -w
#
# 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;
$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);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment