Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
ccan
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mirror
ccan
Commits
29e10815
Commit
29e10815
authored
Sep 10, 2010
by
Rusty Russell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ccanlint: don't run valgrind tests in test dir.
We changed other tests to run in our tmpdir, missed this one.
parent
a1d06d55
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
12 deletions
+0
-12
tools/ccanlint/tests/run_tests_valgrind.c
tools/ccanlint/tests/run_tests_valgrind.c
+0
-12
No files found.
tools/ccanlint/tests/run_tests_valgrind.c
View file @
29e10815
...
@@ -39,15 +39,6 @@ static void *do_run_tests_vg(struct manifest *m,
...
@@ -39,15 +39,6 @@ static void *do_run_tests_vg(struct manifest *m,
struct
run_tests_result
*
res
;
struct
run_tests_result
*
res
;
struct
ccan_file
*
i
;
struct
ccan_file
*
i
;
char
*
cmdout
;
char
*
cmdout
;
char
*
olddir
;
/* We run tests in the module directory, so any paths
* referenced can all be module-local. */
olddir
=
talloc_getcwd
(
m
);
if
(
!
olddir
)
err
(
1
,
"Could not save cwd"
);
if
(
chdir
(
m
->
dir
)
!=
0
)
err
(
1
,
"Could not chdir to %s"
,
m
->
dir
);
list_head_init
(
list
);
list_head_init
(
list
);
...
@@ -82,9 +73,6 @@ static void *do_run_tests_vg(struct manifest *m,
...
@@ -82,9 +73,6 @@ static void *do_run_tests_vg(struct manifest *m,
list
=
NULL
;
list
=
NULL
;
}
}
if
(
chdir
(
olddir
)
!=
0
)
err
(
1
,
"Could not chdir to %s"
,
olddir
);
return
list
;
return
list
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment