You've already forked pgbackrest
							
							
				mirror of
				https://github.com/pgbackrest/pgbackrest.git
				synced 2025-10-30 23:37:45 +02:00 
			
		
		
		
	Fix comments in unit tests.
This commit is contained in:
		| @@ -205,4 +205,19 @@ | ||||
|             </release-item> | ||||
|         </release-improvement-list> | ||||
|     </release-doc-list> | ||||
|  | ||||
|     <release-test-list> | ||||
|         <release-development-list> | ||||
|             <release-item> | ||||
|                 <github-pull-request id="2573"/> | ||||
|  | ||||
|                 <release-item-contributor-list> | ||||
|                     <release-item-contributor id="yegor.zhmak"/> | ||||
|                     <release-item-reviewer id="david.steele"/> | ||||
|                 </release-item-contributor-list> | ||||
|  | ||||
|                 <p>Fix comments in unit tests.</p> | ||||
|             </release-item> | ||||
|         </release-development-list> | ||||
|     </release-test-list> | ||||
| </release> | ||||
|   | ||||
| @@ -1151,6 +1151,11 @@ | ||||
|     <contributor-id type="github">50wu</contributor-id> | ||||
| </contributor> | ||||
|  | ||||
| <contributor id="yegor.zhmak"> | ||||
|     <contributor-name-display>Yegor Zhmak</contributor-name-display> | ||||
|     <contributor-id type="github">YegorZ</contributor-id> | ||||
| </contributor> | ||||
|  | ||||
| <contributor id="yogesh.sharma"> | ||||
|     <contributor-name-display>Yogesh Sharma</contributor-name-display> | ||||
|     <contributor-id type="github">sharmay</contributor-id> | ||||
|   | ||||
| @@ -28,11 +28,11 @@ testRun(void) | ||||
|         TEST_RESULT_UINT(groupIdFromName(groupName()), groupId(), "get group id"); | ||||
|         TEST_RESULT_UINT(groupIdFromName(NULL), (gid_t)-1, "get null group id"); | ||||
|         TEST_RESULT_UINT(groupIdFromName(STRDEF("bogus")), (uid_t)-1, "get bogus group id"); | ||||
|         TEST_RESULT_STR(groupName(), TEST_GROUP_STR, "check name name"); | ||||
|         TEST_RESULT_STR(groupName(), TEST_GROUP_STR, "check group name"); | ||||
|         TEST_RESULT_STR_Z(groupNameFromId(77777), NULL, "invalid group name by id"); | ||||
|  | ||||
| #ifdef HAVE_LIBSSH2 | ||||
|         TEST_RESULT_STR(userHome(), STRDEF("/home/" TEST_USER), "check user name"); | ||||
|         TEST_RESULT_STR(userHome(), STRDEF("/home/" TEST_USER), "check user home directory"); | ||||
|         TEST_RESULT_STR_Z(userHomeFromId(userId()), "/home/" TEST_USER, "user home by id"); | ||||
|         TEST_RESULT_STR_Z(userHomeFromId(77777), NULL, "invalid user home by id"); | ||||
| #endif //  HAVE_LIBSSH2 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user