Add copright, and better documentation to curves.pl
The purpose and use of the test script, curves.pl was not obvious without reading the source code, plus the file was missing a copyright statement.
This commit is contained in:
parent
fbe85fe4fa
commit
3000f78b0b
1 changed files with 19 additions and 4 deletions
|
@ -1,10 +1,25 @@
|
||||||
#!/usr/bin/perl
|
#!/usr/bin/perl
|
||||||
|
|
||||||
# test dependencies on individual curves in tests
|
# curves.pl
|
||||||
# - build
|
|
||||||
# - run test suite
|
|
||||||
#
|
#
|
||||||
# Usage: tests/scripts/curves.pl
|
# Copyright (c) 2014-2016, ARM Limited, All Rights Reserved
|
||||||
|
#
|
||||||
|
# Purpose
|
||||||
|
#
|
||||||
|
# To test the code dependencies on individual curves in each test suite. This
|
||||||
|
# is a verification step to ensure we don't ship test suites that do not work
|
||||||
|
# for some build options.
|
||||||
|
#
|
||||||
|
# The process is:
|
||||||
|
# for each possible curve
|
||||||
|
# build the library and test suites with the curve disabled
|
||||||
|
# execute the test suites
|
||||||
|
#
|
||||||
|
# And any test suite with the wrong dependencies will fail.
|
||||||
|
#
|
||||||
|
# Usage: curves.pl
|
||||||
|
#
|
||||||
|
# This script should be executed from the root of the project directory.
|
||||||
|
|
||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
Loading…
Reference in a new issue