File: git-memory-noopt

package info (click to toggle)
eztrace 2.0%2Brepack-12
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 4,132 kB
  • sloc: ansic: 23,501; perl: 910; sh: 857; cpp: 771; makefile: 696; fortran: 327; f90: 320; python: 57
file content (22 lines) | stat: -rw-r--r-- 516 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
commit bd94aded89a3e4e278854cba026a1a1cc3d68e15 (mine/memory-noopt)
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Wed Aug 24 14:18:07 2022 +0200

    memory test: Avoid optimizations
    
    Otherwise calloc etc. might be optimized away...

diff --git a/test/memory/Makefile b/test/memory/Makefile
index 998e1c6e..f2973f6b 100644
--- a/test/memory/Makefile
+++ b/test/memory/Makefile
@@ -1,6 +1,8 @@
 BIN=memory vector
 SHELL := /bin/bash
 
+CFLAGS=
+
 top_src_dir=$(PWD)/../../
 cur_dir=$(PWD)