annotate .hgignore @ 383:d18843ff4dfd

Rewrite the test suite to run Octave-style built-in tests * Makefile.am (M_FILES): New declaration. (TST_FILES): New derived declaration. (%.cc-tst): New rule to generate test scripts from compiled sources. (check-local): Call __py_tests__.m script file to run test suite. (CLEANFILES): Include fntests.log and *-tst. * __py_tests__.m: New script file to run built-in tests. * .hgignore: Include fntests.log and *.cc-tst.
author Mike Miller <mtmiller@octave.org>
date Sun, 02 Apr 2017 11:20:53 -0700
parents eec3ed1c0578
children 2011e0d2f926
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
103
d99739894a0b .hgignore: Create from .bzrignore
Mike Miller <mtmiller@octave.org>
parents: 8
diff changeset
1 syntax: regexp
175
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
2 # The recurrent (^|/) idiom in the regexps below should be understood
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
3 # to mean "at any directory" while the ^ idiom means "from the
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
4 # project's top-level directory".
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
5
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
6 (^|/).*\.pyc$
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
7 (^|/).*\.dvi$
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
8 (^|/).*\.pdf$
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
9 (^|/).*\.o$
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
10 (^|/).*\.oct$
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
11 (^|/).*\.octlink$
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
12 (^|/)octave-core$
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
13 (^|/).*\.tar\.gz$
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
14 (^|/).*\.html
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
15
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
16 # some common files that the geometry package deals with
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
17 # and are rarely meant to be actually committed
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
18 (^|/).*\.png
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
19 (^|/).*\.svg
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
20 (^|/).*\.eps
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
21 (^|/).*\.fig
103
d99739894a0b .hgignore: Create from .bzrignore
Mike Miller <mtmiller@octave.org>
parents: 8
diff changeset
22
175
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
23 (^|/)m4
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
24 (^|/)aclocal\.m4$
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
25 (^|/).*\.in$
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
26 (^|/).*\.guess$
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
27 (^|/).*\.sub$
251
c8da556b6793 maint: add more file patterns to .hgignore
Mike Miller <mtmiller@octave.org>
parents: 175
diff changeset
28 (^|/)Makefile
175
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
29 (^|/)depcomp
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
30 (^|/)missing
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
31 (^|/)install-sh
251
c8da556b6793 maint: add more file patterns to .hgignore
Mike Miller <mtmiller@octave.org>
parents: 175
diff changeset
32 (^|/)libtool
175
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
33 (^|/)ltmain.sh
251
c8da556b6793 maint: add more file patterns to .hgignore
Mike Miller <mtmiller@octave.org>
parents: 175
diff changeset
34 (^|/)stamp-h1
175
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
35
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
36
251
c8da556b6793 maint: add more file patterns to .hgignore
Mike Miller <mtmiller@octave.org>
parents: 175
diff changeset
37 (^|/)config\.h$
c8da556b6793 maint: add more file patterns to .hgignore
Mike Miller <mtmiller@octave.org>
parents: 175
diff changeset
38 (^|/)config\.log$
c8da556b6793 maint: add more file patterns to .hgignore
Mike Miller <mtmiller@octave.org>
parents: 175
diff changeset
39 (^|/)config\.status$
175
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
40 (^|/)configure$
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
41 (^|/)autom4te\.cache($|/)
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
42
251
c8da556b6793 maint: add more file patterns to .hgignore
Mike Miller <mtmiller@octave.org>
parents: 175
diff changeset
43 (^|/)\.deps
c8da556b6793 maint: add more file patterns to .hgignore
Mike Miller <mtmiller@octave.org>
parents: 175
diff changeset
44 (^|/)\.libs
c8da556b6793 maint: add more file patterns to .hgignore
Mike Miller <mtmiller@octave.org>
parents: 175
diff changeset
45
354
eec3ed1c0578 build: generate PKG_ADD and PKG_DEL files from DEFUN_DLD declarations
Mike Miller <mtmiller@octave.org>
parents: 251
diff changeset
46 (^|/)PKG_(ADD|DEL)
251
c8da556b6793 maint: add more file patterns to .hgignore
Mike Miller <mtmiller@octave.org>
parents: 175
diff changeset
47 (^|/)octave-workspace
c8da556b6793 maint: add more file patterns to .hgignore
Mike Miller <mtmiller@octave.org>
parents: 175
diff changeset
48
383
d18843ff4dfd Rewrite the test suite to run Octave-style built-in tests
Mike Miller <mtmiller@octave.org>
parents: 354
diff changeset
49 (^|/)fntests\.log$
d18843ff4dfd Rewrite the test suite to run Octave-style built-in tests
Mike Miller <mtmiller@octave.org>
parents: 354
diff changeset
50 (^|/).*\.cc-tst$
d18843ff4dfd Rewrite the test suite to run Octave-style built-in tests
Mike Miller <mtmiller@octave.org>
parents: 354
diff changeset
51
175
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
52 # e.g. doc/faq/OctaveFAQ.info
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
53 # doc/interpreter/octave.info-4
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
54 ^doc/.*\.info(-\d)?$
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
55
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
56 ^doc/\w*/stamp-vti$
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
57 ^doc/\w*/stamp-vti$
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
58
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
59 ^doc/latex
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
60 ^doc/html
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
61 ^doc/.*\.db$
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
62
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
63 # Emacs tools create these
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
64 (^|/)TAGS$
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
65 (^|/)semantic.cache$
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
66
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
67 # Other text editors often create these
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
68 (^|/).*~$