public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc(refs/users/aoliva/heads/aux-dump-revamp)] analyzer: introduce analyzer-torture.exp
@ 2020-01-23 20:14 Alexandre Oliva
0 siblings, 0 replies; only message in thread
From: Alexandre Oliva @ 2020-01-23 20:14 UTC (permalink / raw)
To: gcc-cvs
https://gcc.gnu.org/g:d16db16edd35bf4f0774aafef2325e113559d910
commit d16db16edd35bf4f0774aafef2325e113559d910
Author: David Malcolm <dmalcolm@redhat.com>
Date: Tue Nov 19 14:11:21 2019 -0500
analyzer: introduce analyzer-torture.exp
gcc/testsuite/ChangeLog:
* gcc.dg/analyzer/data-model-3.c: Remove hardcoded "-O2" and move
to torture/conftest-1.c.
* gcc.dg/analyzer/torture/analyzer-torture.exp: New.
* gcc.dg/analyzer/torture/conftest-1.c: Move here from
analyzer/data-model-3.c.
* gcc.dg/analyzer/torture/poc.c: New test.
Diff:
---
gcc/testsuite/ChangeLog | 9 +++++
gcc/testsuite/gcc.dg/analyzer/data-model-3.c | 15 --------
.../gcc.dg/analyzer/torture/analyzer-torture.exp | 44 ++++++++++++++++++++++
gcc/testsuite/gcc.dg/analyzer/torture/conftest-1.c | 10 +++++
gcc/testsuite/gcc.dg/analyzer/torture/poc.c | 24 ++++++++++++
5 files changed, 87 insertions(+), 15 deletions(-)
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 68b0ea6..8ad220e 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,12 @@
+2020-01-23 David Malcolm <dmalcolm@redhat.com>
+
+ * gcc.dg/analyzer/data-model-3.c: Remove hardcoded "-O2" and move
+ to torture/conftest-1.c.
+ * gcc.dg/analyzer/torture/analyzer-torture.exp: New.
+ * gcc.dg/analyzer/torture/conftest-1.c: Move here from
+ analyzer/data-model-3.c.
+ * gcc.dg/analyzer/torture/poc.c: New test.
+
2020-01-23 Richard Biener <rguenther@suse.de>
PR tree-optimization/93381
diff --git a/gcc/testsuite/gcc.dg/analyzer/data-model-3.c b/gcc/testsuite/gcc.dg/analyzer/data-model-3.c
deleted file mode 100644
index 3d572eb..0000000
--- a/gcc/testsuite/gcc.dg/analyzer/data-model-3.c
+++ /dev/null
@@ -1,15 +0,0 @@
-/* { dg-additional-options "-O2" } */
-/* TODO:is there a way to automatically run the tests on various
- optimizations levels, and with/without debuginfo, rather than
- hardcoding options? Adapt from torture .exp, presumably. */
-
-#include <stdio.h>
-int
-main ()
-{
- FILE *f = fopen ("conftest.out", "w");
- return ferror (f) || fclose (f) != 0;
-
- ;
- return 0;
-}
diff --git a/gcc/testsuite/gcc.dg/analyzer/torture/analyzer-torture.exp b/gcc/testsuite/gcc.dg/analyzer/torture/analyzer-torture.exp
new file mode 100644
index 0000000..a4d98bb
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/analyzer/torture/analyzer-torture.exp
@@ -0,0 +1,44 @@
+# Copyright (C) 2020 Free Software Foundation, Inc.
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCC; see the file COPYING3. If not see
+# <http://www.gnu.org/licenses/>.
+
+# This harness is for tests that should be run at all optimisation levels.
+
+load_lib gcc-dg.exp
+
+# If the analyzer has not been enabled, bail.
+if { ![check_effective_target_analyzer] } {
+ return
+}
+
+dg-init
+
+global DEFAULT_CFLAGS
+if [info exists DEFAULT_CFLAGS] then {
+ set save_default_cflags $DEFAULT_CFLAGS
+}
+
+# If a testcase doesn't have special options, use these.
+set DEFAULT_CFLAGS "-fanalyzer -fdiagnostics-path-format=separate-events -Wanalyzer-too-complex -fanalyzer-call-summaries"
+
+gcc-dg-runtest [lsort [glob $srcdir/$subdir/*.c]] "" $DEFAULT_CFLAGS
+
+dg-finish
+
+if [info exists save_default_cflags] {
+ set DEFAULT_CFLAGS $save_default_cflags
+} else {
+ unset DEFAULT_CFLAGS
+}
diff --git a/gcc/testsuite/gcc.dg/analyzer/torture/conftest-1.c b/gcc/testsuite/gcc.dg/analyzer/torture/conftest-1.c
new file mode 100644
index 0000000..0cf85f0
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/analyzer/torture/conftest-1.c
@@ -0,0 +1,10 @@
+#include <stdio.h>
+int
+main ()
+{
+ FILE *f = fopen ("conftest.out", "w");
+ return ferror (f) || fclose (f) != 0;
+
+ ;
+ return 0;
+}
diff --git a/gcc/testsuite/gcc.dg/analyzer/torture/poc.c b/gcc/testsuite/gcc.dg/analyzer/torture/poc.c
new file mode 100644
index 0000000..1ad45b2
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/analyzer/torture/poc.c
@@ -0,0 +1,24 @@
+/* { dg-do link } */
+
+#include <stdlib.h>
+
+void test_1 (void *ptr)
+{
+ free (ptr);
+ free (ptr); /* { dg-warning "double-free" } */
+}
+
+struct s
+{
+ void *ptr;
+};
+
+void test_2 (struct s *x)
+{
+ free (x->ptr);
+ free (x->ptr); /* { dg-warning "double-free" } */
+}
+
+/* TODO: be more precise about what is freed. */
+
+int main () {}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2020-01-23 20:14 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-23 20:14 [gcc(refs/users/aoliva/heads/aux-dump-revamp)] analyzer: introduce analyzer-torture.exp Alexandre Oliva
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).