Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
c498701d
Commit
c498701d
authored
Sep 19, 2011
by
Paul Betts
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix tests to use portable setenv
parent
222d057c
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
12 deletions
+14
-12
tests/t15-config.c
+5
-4
tests/t16-remotes.c
+9
-8
No files found.
tests/t15-config.c
View file @
c498701d
...
...
@@ -26,6 +26,7 @@
#include "test_helpers.h"
#include <git2.h>
#include <posix.h>
#include "filebuf.h"
#define CONFIG_BASE TEST_RESOURCES "/config"
...
...
@@ -217,7 +218,7 @@ BEGIN_TEST(config10, "a repo's config overrides the global config")
char
*
old_home
;
old_home
=
git__strdup
(
getenv
(
"HOME"
));
setenv
(
"HOME"
,
CONFIG_BASE
,
1
);
p_
setenv
(
"HOME"
,
CONFIG_BASE
,
1
);
must_pass
(
git_repository_open
(
&
repo
,
REPOSITORY_FOLDER
));
must_pass
(
git_repository_config
(
&
cfg
,
repo
,
NULL
));
...
...
@@ -226,7 +227,7 @@ BEGIN_TEST(config10, "a repo's config overrides the global config")
git_config_free
(
cfg
);
git_repository_free
(
repo
);
setenv
(
"HOME"
,
old_home
,
1
);
p_
setenv
(
"HOME"
,
old_home
,
1
);
free
(
old_home
);
END_TEST
...
...
@@ -237,7 +238,7 @@ BEGIN_TEST(config11, "fall back to the global config")
char
*
old_home
;
old_home
=
git__strdup
(
getenv
(
"HOME"
));
setenv
(
"HOME"
,
CONFIG_BASE
,
1
);
p_
setenv
(
"HOME"
,
CONFIG_BASE
,
1
);
must_pass
(
git_repository_open
(
&
repo
,
REPOSITORY_FOLDER
));
must_pass
(
git_repository_config
(
&
cfg
,
repo
,
NULL
));
...
...
@@ -246,7 +247,7 @@ BEGIN_TEST(config11, "fall back to the global config")
git_config_free
(
cfg
);
git_repository_free
(
repo
);
setenv
(
"HOME"
,
old_home
,
1
);
p_
setenv
(
"HOME"
,
old_home
,
1
);
free
(
old_home
);
END_TEST
...
...
tests/t16-remotes.c
View file @
c498701d
...
...
@@ -26,6 +26,7 @@
#include "test_helpers.h"
#include <git2.h>
#include <posix.h>
BEGIN_TEST
(
remotes0
,
"remote parsing works"
)
git_remote
*
remote
;
...
...
@@ -34,7 +35,7 @@ BEGIN_TEST(remotes0, "remote parsing works")
char
*
old_home
;
old_home
=
git__strdup
(
getenv
(
"HOME"
));
setenv
(
"HOME"
,
"/dev/null"
,
1
);
p_
setenv
(
"HOME"
,
"/dev/null"
,
1
);
must_pass
(
git_repository_open
(
&
repo
,
REPOSITORY_FOLDER
));
must_pass
(
git_repository_config
(
&
cfg
,
repo
,
NULL
));
...
...
@@ -46,7 +47,7 @@ BEGIN_TEST(remotes0, "remote parsing works")
git_config_free
(
cfg
);
git_repository_free
(
repo
);
setenv
(
"HOME"
,
old_home
,
1
);
p_
setenv
(
"HOME"
,
old_home
,
1
);
free
(
old_home
);
END_TEST
...
...
@@ -58,7 +59,7 @@ BEGIN_TEST(refspec0, "remote with refspec works")
char
*
old_home
;
old_home
=
git__strdup
(
getenv
(
"HOME"
));
setenv
(
"HOME"
,
"/dev/null"
,
1
);
p_
setenv
(
"HOME"
,
"/dev/null"
,
1
);
must_pass
(
git_repository_open
(
&
repo
,
REPOSITORY_FOLDER
));
must_pass
(
git_repository_config
(
&
cfg
,
repo
,
NULL
));
...
...
@@ -71,7 +72,7 @@ BEGIN_TEST(refspec0, "remote with refspec works")
git_config_free
(
cfg
);
git_repository_free
(
repo
);
setenv
(
"HOME"
,
old_home
,
1
);
p_
setenv
(
"HOME"
,
old_home
,
1
);
free
(
old_home
);
END_TEST
...
...
@@ -83,7 +84,7 @@ BEGIN_TEST(refspec1, "remote fnmatch works as expected")
char
*
old_home
;
old_home
=
git__strdup
(
getenv
(
"HOME"
));
setenv
(
"HOME"
,
"/dev/null"
,
1
);
p_
setenv
(
"HOME"
,
"/dev/null"
,
1
);
must_pass
(
git_repository_open
(
&
repo
,
REPOSITORY_FOLDER
));
must_pass
(
git_repository_config
(
&
cfg
,
repo
,
NULL
));
...
...
@@ -96,7 +97,7 @@ BEGIN_TEST(refspec1, "remote fnmatch works as expected")
git_config_free
(
cfg
);
git_repository_free
(
repo
);
setenv
(
"HOME"
,
old_home
,
1
);
p_
setenv
(
"HOME"
,
old_home
,
1
);
free
(
old_home
);
END_TEST
...
...
@@ -109,7 +110,7 @@ BEGIN_TEST(refspec2, "refspec transform")
char
*
old_home
;
old_home
=
git__strdup
(
getenv
(
"HOME"
));
setenv
(
"HOME"
,
"/dev/null"
,
1
);
p_
setenv
(
"HOME"
,
"/dev/null"
,
1
);
must_pass
(
git_repository_open
(
&
repo
,
REPOSITORY_FOLDER
));
must_pass
(
git_repository_config
(
&
cfg
,
repo
,
NULL
));
...
...
@@ -122,7 +123,7 @@ BEGIN_TEST(refspec2, "refspec transform")
git_config_free
(
cfg
);
git_repository_free
(
repo
);
setenv
(
"HOME"
,
old_home
,
1
);
p_
setenv
(
"HOME"
,
old_home
,
1
);
free
(
old_home
);
END_TEST
...
...
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