Skip to content

Commit 46c78ac

Browse files
add stub makefile commands for memory profiling (#33)
1 parent 6a66776 commit 46c78ac

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Makefile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,12 @@ test: test-data
3232

3333
lint:
3434
golangci-lint run
35+
36+
## profile-memory - Run test and generate memory profile
37+
profile-memory:
38+
echo "Run test and generate memory profile"
39+
40+
## profile-memory-compare - Compare two memory profiles
41+
## example: make profile-memory-compare BASE_FILE=memprofile1.out FEAT_FILE=memprofile2.out
42+
profile-memory-compare:
43+
echo "Compare two memory profiles"

0 commit comments

Comments
 (0)