os/ossrv/genericopenlibs/posixrealtimeextensions/test/testsharedmemory/src/tsharedmemoryblocks.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // Name        : tsharedmemoryblocks.cpp
    15 // Test cases for blocking signal api's
    16 //
    17 
    18 
    19 
    20 #include "tsharedmemory.h"
    21 
    22 static int closenunlink(int fd,char *name )
    23 	{
    24 	int ret, ret1 = KErrGeneral;
    25 	ret = close(fd);
    26 	if(ret != 0)
    27 		{
    28 		goto close;		
    29 		}
    30 	ret = shm_unlink(name);
    31 	if(ret != 0)
    32 		{
    33 		goto close;		
    34 		}	
    35 	ret1 = KErrNone;
    36 	
    37 	close:
    38 	return ret1;
    39 	}
    40 
    41 // -----------------------------------------------------------------------------
    42 // CTestsharedmemory::Testsharedmemory1
    43 // Test Case ID: OPENENV-LIBC-CIT-5946
    44 // API tested: shm_open(), shm_unlink()
    45 // Description: Test case added to open the shared memory object using shm_open() and unlinking the same using shm_unlink()
    46 // -----------------------------------------------------------------------------
    47 
    48 TInt CTestsharedmemory::Testsharedmemory1 (  )
    49 	{
    50 	TPtrC Shmname;
    51 	int ret, ret1 = KErrGeneral, fd;
    52 	TBuf8<50> shmname ;
    53 	char filename[50];
    54 	ret = GetStringFromConfig(ConfigSection(), _L("Shmname"), Shmname );
    55 	shmname.Copy(Shmname) ; 
    56 	char *file = (char *) shmname.Ptr() ;
    57 	if(ret == 0)  
    58 		{
    59 		ERR_PRINTF1(_L("Failed to read input file name") );
    60      	goto close;
    61 		}
    62     file[shmname.Length()] = '\0' ;
    63 	strcpy(filename , file) ;
    64 	fd = shm_open(filename, O_CREAT, 0777);
    65 	if (fd <= 0)
    66 		{
    67 		ERR_PRINTF2(_L("Error in opening the file and errno is %d"),errno);
    68 		goto close;
    69 		}
    70 	ret = closenunlink(fd,filename);
    71 	if(ret == KErrGeneral)
    72 		{
    73 		ERR_PRINTF1(_L("Error in deleting the file"));
    74 		goto close;		
    75 		}
    76 	INFO_PRINTF1(_L("Successfully able to create a shared memory"));	
    77 	ret1 = KErrNone;
    78 
    79 	close:
    80 	return ret1;
    81 	}
    82 
    83 // -----------------------------------------------------------------------------
    84 // CTestsharedmemory::Testsharedmemory2
    85 // Test Case ID: OPENENV-LIBC-CIT-5946
    86 // API tested: shm_open(), shm_unlink()
    87 // Description: Trying to open a file which is closed and unlinked
    88 // -----------------------------------------------------------------------------
    89 
    90 TInt CTestsharedmemory::Testsharedmemory2 (  )
    91 	{
    92 	TPtrC Shmname;
    93 	int ret, ret1 = KErrGeneral, fd;
    94 	TBuf8<50> shmname ;
    95 	char filename[50];
    96     ret = GetStringFromConfig(ConfigSection(), _L("Shmname"), Shmname );
    97     shmname.Copy(Shmname) ; 
    98 	char *file = (char *) shmname.Ptr() ;
    99     if(ret == 0)  
   100 		{
   101 		ERR_PRINTF1(_L("Failed to read input file name") );
   102      	goto close;
   103 		}
   104 	file[shmname.Length()] = '\0' ;
   105 	strcpy(filename , file) ;
   106 	fd = shm_open(filename,O_CREAT|O_RDWR,0777);
   107 	if (fd <= 0)
   108 		{
   109 		ERR_PRINTF2(_L("Error in opening the file and errno is %d"),errno);
   110 		goto close;
   111 		}
   112 	INFO_PRINTF1(_L("Successfully able to create a shared memory"));
   113 	ret = closenunlink(fd,filename);
   114 	if(ret == KErrGeneral)
   115 		{
   116 		ERR_PRINTF1(_L("Error in deleting the file"));
   117 		goto close;		
   118 		}
   119 	INFO_PRINTF1(_L("Successfully able to delete a shared memory"));
   120 	fd = shm_open(filename,O_RDWR,0777);
   121 	if((fd != -1) || (errno != ENOENT))
   122 		{
   123 		ERR_PRINTF2(_L("shm_open() failed on negative test and errno is %d"),errno);
   124 		goto close;	
   125 		}
   126 	INFO_PRINTF1(_L("shm_open() successfully returned ENOENT on negative test"));
   127 	ret1 = KErrNone;
   128 
   129 	close:
   130 	return ret1;
   131 	}
   132 
   133 // -----------------------------------------------------------------------------
   134 // CTestsharedmemory::Testsharedmemory3
   135 // Test Case ID: OPENENV-LIBC-CIT-5946
   136 // API tested: shm_open(), shm_unlink()
   137 // Description: Trying to open a file which is already present using O_EXCL
   138 // -----------------------------------------------------------------------------
   139 
   140 TInt CTestsharedmemory::Testsharedmemory3 (  )
   141 	{
   142 	TPtrC Shmname;
   143 	int ret, ret1 = KErrGeneral, fd;
   144 	TBuf8<50> shmname ;
   145 	char filename[50];
   146     ret = GetStringFromConfig(ConfigSection(), _L("Shmname"), Shmname );
   147     shmname.Copy(Shmname) ; 
   148 	char *file = (char *) shmname.Ptr() ;
   149     if(ret == 0)  
   150 		{
   151 		ERR_PRINTF1(_L("Failed to read input file name") );
   152      	goto close;
   153 		}
   154 	file[shmname.Length()] = '\0' ;
   155 	strcpy(filename , file) ;
   156 	fd = shm_open(filename,O_CREAT,0777);
   157 	if (fd <= 0)
   158 		{
   159 		ERR_PRINTF2(_L("Error in opening the file and errno is %d"),errno);
   160 		goto close;
   161 		}
   162 	INFO_PRINTF1(_L("Successfully able to create a shared memory"));
   163 	ret =  close(fd);
   164 	if(ret != 0)
   165 		{
   166 		ERR_PRINTF2(_L("Error in closing the file and errno is %d"),errno);
   167 		goto close;		
   168 		}
   169 	fd = shm_open(filename,O_CREAT|O_EXCL,0777);
   170 	if((fd != -1) || (errno != EEXIST))
   171 		{
   172 		ERR_PRINTF1(_L("shm_open() failed on negative test"));
   173 		goto close;	
   174 		}
   175 	INFO_PRINTF1(_L("shm_open() successfully returned EEXIST on negative test"));
   176 	ret = shm_unlink(filename);
   177 	if(ret != 0)
   178 		{
   179 		ERR_PRINTF1(_L("Error in deleting the file"));
   180 		goto close;		
   181 		}
   182 	ret1 = KErrNone;
   183 	
   184 	close:
   185 	return ret1;
   186 	}
   187 
   188 // -----------------------------------------------------------------------------
   189 // CTestsharedmemory::Testsharedmemory4
   190 // Test Case ID: OPENENV-LIBC-CIT-5946
   191 // API tested: shm_open(), shm_unlink()
   192 // Description: Trying to create a shared memory using O_CREAT|O_EXCL|O_RDWR flag
   193 // -----------------------------------------------------------------------------
   194 
   195 TInt CTestsharedmemory::Testsharedmemory4 (  )
   196 	{
   197 	TPtrC Shmname;
   198 	int ret, ret1 = KErrGeneral, fd;
   199 	TBuf8<50> shmname ;
   200 	char filename[50];
   201     ret = GetStringFromConfig(ConfigSection(), _L("Shmname"), Shmname );
   202     shmname.Copy(Shmname) ; 
   203 	char *file = (char *) shmname.Ptr() ;
   204     if(ret == 0)  
   205 		{
   206 		ERR_PRINTF1(_L("Failed to read input file name") );
   207      	goto close;
   208 		}
   209 	file[shmname.Length()] = '\0' ;
   210 	strcpy(filename , file) ;
   211 	fd = shm_open(filename,O_CREAT|O_EXCL|O_RDWR,0777);
   212 	if (fd <= 0)
   213 		{
   214 		ERR_PRINTF2(_L("Error in opening the file and errno is %d"),errno);
   215 		goto close;
   216 		}
   217 	INFO_PRINTF1(_L("Successfully able to create a shared memory"));
   218 	ret =  closenunlink(fd,filename);
   219 	if(ret == KErrGeneral)
   220 		{
   221 		ERR_PRINTF2(_L("Error in closing the file and errno is %d"),errno);
   222 		goto close;		
   223 		}
   224 	ret1 = KErrNone;
   225 	
   226 	close:
   227 	return ret1;
   228 	}
   229 
   230 // -----------------------------------------------------------------------------
   231 // CTestsharedmemory::Testsharedmemory5
   232 // Test Case ID: OPENENV-LIBC-CIT-5946
   233 // API tested: shm_open(), shm_unlink()
   234 // Description: To validate that the lowest numbered file descriptor not currently opened for that process is returned by shm_open()
   235 // -----------------------------------------------------------------------------
   236 
   237 TInt CTestsharedmemory::Testsharedmemory5 (  )
   238 	{
   239 	TPtrC Shmname;
   240 	int ret, ret1 = KErrGeneral, fd, fd1, fd2, fd3;
   241 	TBuf8<50> shmname ;
   242 	char filename[50];
   243     ret = GetStringFromConfig(ConfigSection(), _L("Shmname"), Shmname );
   244     shmname.Copy(Shmname) ; 
   245 	char *file = (char *) shmname.Ptr() ;
   246     if(ret == 0)  
   247 		{
   248 		ERR_PRINTF1(_L("Failed to read input file name") );
   249      	goto close;
   250 		}
   251 	file[shmname.Length()] = '\0' ;
   252 	strcpy(filename , file) ;
   253 	fd1 = shm_open(filename,O_CREAT,0777);
   254 	if (fd1 <= 0)
   255 		{
   256 		ERR_PRINTF2(_L("Error in opening the file and errno is %d"),errno);
   257 		goto close;
   258 		}
   259 	INFO_PRINTF1(_L("Successfully able to create a shared memory"));
   260 	fd2 = shm_open(filename,O_CREAT,0777);
   261 	if (fd2 != (fd1+1))
   262 		{
   263 		ERR_PRINTF2(_L("Error in opening the file and errno is %d"),errno);
   264 		goto close;
   265 		}
   266 	INFO_PRINTF1(_L("Successfully able to create a shared memory"));
   267 	fd = fd1;
   268 	ret =  close(fd);
   269 	if(ret != 0)
   270 		{
   271 		ERR_PRINTF2(_L("Error in closing the file and errno is %d"),errno);
   272 		goto close;		
   273 		}
   274 	fd3 = shm_open(filename,O_CREAT,0777);
   275 	if (fd3 <= 0)
   276 		{
   277 		ERR_PRINTF2(_L("Error in opening the file and errno is %d"),errno);
   278 		goto close;
   279 		}
   280 	INFO_PRINTF1(_L("Successfully able to create a shared memory"));
   281 	if (fd1 != fd3)
   282 		{
   283 		ERR_PRINTF1(_L("Error in returning the lowest fd value"));
   284 		goto close;
   285 		}
   286 	INFO_PRINTF1(_L("Successfully returned the lowest fd value"));
   287 	ret =  close(fd2);
   288 	if(ret != 0)
   289 		{
   290 		ERR_PRINTF2(_L("Error in closing the file and errno is %d"),errno);
   291 		goto close;		
   292 		}
   293 	ret = closenunlink(fd3,filename);
   294 	if(ret == KErrGeneral)
   295 		{
   296 		ERR_PRINTF1(_L("Error in deleting the file"));
   297 		goto close;		
   298 		}
   299 	ret1 = KErrNone;
   300 	
   301 	close:
   302 	return ret1;
   303 	}
   304 
   305 // -----------------------------------------------------------------------------
   306 // CTestsharedmemory::Testsharedmemory6
   307 // Test Case ID: OPENENV-LIBC-CIT-5946
   308 // API tested: shm_open()
   309 // Description: Trying to open a shared memory with only O_WRONLY flag set
   310 // -----------------------------------------------------------------------------
   311 
   312 TInt CTestsharedmemory::Testsharedmemory6 (  )
   313 	{	
   314 	TPtrC Shmname;
   315 	int ret, ret1 = KErrGeneral, fd;
   316 	TBuf8<50> shmname ;
   317 	char filename[50];
   318     ret = GetStringFromConfig(ConfigSection(), _L("Shmname"), Shmname );
   319     shmname.Copy(Shmname) ; 
   320 	char *file = (char *) shmname.Ptr() ;
   321     if(ret == 0)  
   322 		{
   323 		ERR_PRINTF1(_L("Failed to read input file name") );
   324      	goto close;
   325 		}
   326 	file[shmname.Length()] = '\0' ;
   327 	strcpy(filename , file) ;
   328 	fd = shm_open(filename,O_CREAT,0777);
   329 	ret =  close(fd);
   330 	if(ret != 0)
   331 		{
   332 		ERR_PRINTF2(_L("Error in closing the file and errno is %d"),errno);
   333 		goto close;		
   334 		}
   335 	fd = shm_open(filename,O_WRONLY,0777);
   336 	if ((fd != -1) || (errno != EINVAL))
   337 		{
   338 		ERR_PRINTF2(_L("shm_unlink() failed on negative test and errno is %d"),errno);
   339 		goto close;	
   340 		}
   341 	INFO_PRINTF1(_L("shm_unlink() successfully returned EINVAL on negative test"));
   342 	ret1 = KErrNone;
   343 	
   344 	close:
   345 	shm_unlink(filename);
   346 	return ret1;
   347 	}
   348 
   349 // -----------------------------------------------------------------------------
   350 // CTestsharedmemory::Testsharedmemory7
   351 // Test Case ID: OPENENV-LIBC-CIT-5946
   352 // API tested: shm_open()
   353 // Description: Trying to open a shared memory with NULL as the input
   354 // -----------------------------------------------------------------------------
   355 
   356 TInt CTestsharedmemory::Testsharedmemory7 (  )
   357 	{	
   358 	int ret1 = KErrGeneral, fd;
   359 	fd = shm_open(NULL,O_CREAT|O_RDWR,0777);
   360 	if ((fd != -1) || (errno != EFAULT))
   361 		{
   362 		ERR_PRINTF1(_L("shm_unlink() failed on negative test"));
   363 		goto close;	
   364 		}
   365 	INFO_PRINTF1(_L("Successfully shm_unlink() returned EFAULT on negative test"));
   366 	ret1 = KErrNone;
   367 	
   368 	close:
   369 	return ret1;
   370 	}
   371 
   372 // -----------------------------------------------------------------------------
   373 // CTestsharedmemory::Testsharedmemory8
   374 // Test Case ID: OPENENV-LIBC-CIT-5946
   375 // API tested: shm_open()
   376 // Description: Trying to open a shared memory name as an empty string
   377 // -----------------------------------------------------------------------------
   378 
   379 TInt CTestsharedmemory::Testsharedmemory8 (  )
   380 	{
   381 	int fd, ret1 = KErrGeneral;
   382 	fd = shm_open("",O_CREAT,0777);
   383 	if ((fd != -1) || (errno != EINVAL))
   384 		{
   385 		ERR_PRINTF1(_L("shm_unlink() failed on negative test"));
   386 		goto close;	
   387 		}
   388 	INFO_PRINTF1(_L("Successfully shm_unlink() returned EINVAL on negative test"));
   389 	ret1 = KErrNone;
   390 	
   391 	close:
   392 	return ret1;		
   393 	}
   394 
   395 // -----------------------------------------------------------------------------
   396 // CTestsharedmemory::Testsharedmemory9
   397 // Test Case ID: OPENENV-LIBC-CIT-5946
   398 // API tested: shm_open(), shm_unlink()
   399 // Description: Trying to open a shared memory with a name less than maximum bytes
   400 // -----------------------------------------------------------------------------
   401 
   402 TInt CTestsharedmemory::Testsharedmemory9 (  )
   403 	{
   404 	int len, fd, ret1 = KErrGeneral, ret;
   405 	char path[258];
   406 	for (len=0; len<219; len++)
   407 		{
   408 		path[len] = 'a';
   409 		}
   410 	path[len]='\0';
   411 	fd = shm_open(path,O_CREAT,0777);
   412 	if (fd <= 0)
   413 		{
   414 		ERR_PRINTF2(_L("Error in opening the file and errno is %d"),errno);
   415 		goto close;
   416 		}
   417 	ret = closenunlink(fd,path);
   418 	if(ret == KErrGeneral)
   419 		{
   420 		ERR_PRINTF1(_L("Error in deleting the file"));
   421 		goto close;		
   422 		}
   423 	INFO_PRINTF1(_L("Successfully able to create a shared memory"));
   424 	ret1 = KErrNone;
   425 	
   426 	close:
   427 	return ret1;		
   428 	}
   429 
   430 // -----------------------------------------------------------------------------
   431 // CTestsharedmemory::Testsharedmemory10
   432 // Test Case ID: OPENENV-LIBC-CIT-5946
   433 // API tested: shm_open()
   434 // Description: Negative test to return ENAMETOOLONG for shm_open()
   435 // -----------------------------------------------------------------------------
   436 
   437 TInt CTestsharedmemory::Testsharedmemory10 (  )
   438 	{
   439 	int len, fd, ret1 = KErrGeneral;
   440 	char path[258];
   441 	for (len=0; len<258; len++)
   442 		{
   443 		path[len] = 'a';
   444 		}
   445 	path[len]='\0';
   446 	fd = shm_open(path,O_CREAT,0777);
   447 	if((fd != -1) || (errno != ENAMETOOLONG))
   448 		{
   449 		ERR_PRINTF1(_L("shm_open() failed on negative test"));
   450 		goto close;	
   451 		}
   452 	INFO_PRINTF1(_L("shm_open() successfully returned ENAMETOOLONG on negative test"));
   453 	ret1 = KErrNone;
   454 	
   455 	close:
   456 	return ret1;		
   457 	}
   458 	
   459 // -----------------------------------------------------------------------------
   460 // CTestsharedmemory::Testsharedmemory11
   461 // Test Case ID: OPENENV-LIBC-CIT-5946
   462 // API tested: shm_open(), shm_unlink()
   463 // Description: Opening an existing shared memory in the different process using posix_spawn()
   464 // -----------------------------------------------------------------------------
   465 
   466 TInt CTestsharedmemory::Testsharedmemory11 (  )
   467 	{
   468 	TPtrC Shmname;
   469 	int ret, ret1 = KErrGeneral, fd, status;
   470 	pid_t pid1, pid;
   471 	char **argv = (char**)malloc(2*sizeof(char*));
   472 	argv[0] = (char*)malloc(30*sizeof(char));
   473 	argv[1] = 0;
   474 	fd = shm_open("shmemtest", O_CREAT, 0777);
   475 	if (fd <= 0)
   476 		{
   477 		ERR_PRINTF2(_L("Error in opening the file and errno is %d"),errno);
   478 		goto close;
   479 		}
   480 	INFO_PRINTF1(_L("Successfully able to create a shared memory"));	
   481 	strcpy(argv[0], "z:\\sys\\bin\\openshmem.exe");
   482 	ret = posix_spawn(&pid, "z:\\sys\\bin\\openshmem.exe", NULL, NULL, argv, (char**)NULL);
   483 	if(ret != 0)
   484 		{
   485 		ERR_PRINTF2(_L("Error in posix spawn and errno is set to %d"),errno);
   486 		goto close;
   487 		}
   488 	pid1 = waitpid(pid, &status, WUNTRACED);
   489 	if (pid1 != pid)
   490 		{
   491 		ERR_PRINTF1(_L("waitpid failed..."));	
   492 		goto close;
   493 		}
   494 	if(!(WEXITSTATUS(status)))
   495 		{
   496 		ERR_PRINTF1(_L("Failed to open the shared memory in the child process"));	
   497 		goto close;		
   498 		}
   499 	INFO_PRINTF1(_L("Successfully able to open the shared memory in the child process"));
   500 	ret = closenunlink(fd,"shmemtest");
   501 	if(ret == KErrGeneral)
   502 		{
   503 		ERR_PRINTF1(_L("Error in deleting the file"));
   504 		goto close;		
   505 		}
   506 	ret1 = KErrNone;
   507 
   508 	close:
   509 	free((void*)argv[0]);
   510 	free((void*)argv);
   511 	return ret1;
   512 	}
   513 
   514 // -----------------------------------------------------------------------------
   515 // CTestsharedmemory::Testsharedmemory12
   516 // Test Case ID: OPENENV-LIBC-CIT-5946
   517 // API tested: shm_open(), shm_unlink()
   518 // Description: Opening an existing shared memory in the different process using popen()
   519 // -----------------------------------------------------------------------------
   520 
   521 TInt CTestsharedmemory::Testsharedmemory12 (  )
   522 	{ 
   523 	int ret, ret1 = KErrGeneral, fd, status, fds[3], pid, pid1;
   524 	char buf[22];
   525 	fd = shm_open("shmemtest_popen", O_CREAT|O_RDWR , 0666);
   526 	if (fd <= 0)
   527 		{
   528 		ERR_PRINTF2(_L("Error in opening the file and errno is %d"),errno);
   529 		goto close;
   530 		}
   531 	INFO_PRINTF2(_L("Successfully able to create a shared memory with fd  = %d"),fd);	
   532 	ret = write(fd, "helloworldss", 6);
   533 	if(ret == -1)
   534 		{
   535 		ERR_PRINTF2(_L("Error in writing into a file and errno is %d"),errno);
   536 		goto close;
   537 		}
   538 	INFO_PRINTF1(_L("Successfully able to write in a shared memory for the first time"));
   539 	ret = write(fd, "gimmick", 6);
   540 	if(ret == -1)
   541 		{
   542 		ERR_PRINTF2(_L("Error in writing into a file and errno is %d"),errno);
   543 		goto close;
   544 		}
   545 	INFO_PRINTF1(_L("Successfully able to write in a shared memory"));
   546 	ret = lseek(fd, 3, SEEK_SET);
   547 	INFO_PRINTF2(_L("lseek returns = %d"),ret);
   548 	if(ret == -1)
   549 		{
   550 		INFO_PRINTF2(_L("Failed to move the offset using lseek() and  errno is %d"),errno);
   551 		goto close;		
   552 		}
   553 	ret = write(fd, "symbianis", 9);
   554 	if(ret == -1)
   555 		{
   556 		ERR_PRINTF2(_L("Error in writing into a file and errno is %d"),errno);
   557 		goto close;
   558 		}
   559 	INFO_PRINTF1(_L("Successfully able to write in a shared memory"));
   560 	ret = lseek(fd, -12, SEEK_END);
   561 	INFO_PRINTF2(_L("lseek returns = %d"),ret);
   562 	if(ret == -1)
   563 		{
   564 		INFO_PRINTF2(_L("Failed to move the offset using lseek() and  errno is %d"),errno);
   565 		goto close;		
   566 		}
   567 	ret = read(fd, (void*)buf, 21);
   568 	INFO_PRINTF2(_L("read returns = %d"),ret);
   569 	if(ret == -1)
   570 		{
   571 		INFO_PRINTF2(_L("Error in reading from file and  errno is %d"),errno);
   572 		goto close;		
   573 		}
   574 	INFO_PRINTF1(_L("Successfully able to read from shared memory"));
   575 	pid = popen3("openshmem_popen.exe", NULL, NULL, fds);
   576 	if (pid == 0)
   577 		{
   578 		ERR_PRINTF2(_L("Error in popen() and errno is set to %d"),errno);
   579 		goto close;		
   580 		}
   581 	pid1 = waitpid(pid, &status, WUNTRACED);
   582 	if (pid1 != pid)
   583 		{
   584 		ERR_PRINTF1(_L("waitpid failed..."));	
   585 		goto close;
   586 		}
   587 	if(!(WEXITSTATUS(status)))
   588 		{
   589 		ERR_PRINTF1(_L("Failed to open the shared memory in the child process"));	
   590 		goto close;		
   591 		}
   592 	ret = strncmp(buf, "helsymbianis",12);
   593 	if (ret != 0)
   594 		{
   595 		ERR_PRINTF2(_L("Error in reading and writing and errno is %d"),errno);
   596 		goto close;
   597 		}
   598 	ret1 = KErrNone;
   599 	
   600 	close:
   601 	closenunlink(fd,"shmemtest_popen");
   602 	return ret1;		
   603 	}
   604 
   605 // -----------------------------------------------------------------------------
   606 // CTestsharedmemory::Testsharedmemory13
   607 // Test Case ID: OPENENV-LIBC-CIT-5946
   608 // API tested: shm_unlink()
   609 // Description: To delete the shared memory which does not exists with an argument name been less than PATH_MAX/NAME_MAX
   610 // -----------------------------------------------------------------------------
   611 
   612 TInt CTestsharedmemory::Testsharedmemory13 (  )
   613 	{	
   614 	int len, fd, ret1 = KErrGeneral;
   615 	char path[253];
   616 	for (len=0; len<219; len++)
   617 		{
   618 		path[len] = 'b';
   619 		}
   620 	path[len]='\0';
   621 	fd = shm_unlink(path);
   622 	if((fd != -1) || (errno != ENOENT) )
   623 		{
   624 		ERR_PRINTF1(_L("shm_unlink() failed on negative test"));
   625 		goto close;	
   626 		}
   627 	INFO_PRINTF1(_L("shm_unlink() successfully returned ENOENT on negative test"));
   628 	ret1 = KErrNone;
   629 	
   630 	close:
   631 	return ret1;	
   632 	}
   633 
   634 // -----------------------------------------------------------------------------
   635 // CTestsharedmemory::Testsharedmemory14
   636 // Test Case ID: OPENENV-LIBC-CIT-5946
   637 // API tested: shm_unlink()
   638 // Description: To delete the shared memory with the name of  an argument been greater than 256.
   639 // -----------------------------------------------------------------------------
   640 
   641 TInt CTestsharedmemory::Testsharedmemory14 (  )
   642 	{	
   643 	int i, ret, ret1 = KErrGeneral;
   644 	char path[258];
   645 	for (i=0; i<258; i++)
   646 		{
   647 		path[i] = 'b';
   648 		}
   649 	path[i]='\0';
   650 	ret = shm_unlink(path);
   651 	if((ret != -1) || (errno != ENAMETOOLONG) )
   652 		{
   653 		ERR_PRINTF1(_L("shm_unlink() failed on negative test"));
   654 		goto close;	
   655 		}
   656 	INFO_PRINTF1(_L("shm_unlink() successfully returned ENAMETOOLONG on negative test"));
   657 	ret1 = KErrNone;
   658 	
   659 	close:
   660 	return ret1;
   661 	}
   662 
   663 // -----------------------------------------------------------------------------
   664 // CTestsharedmemory::Testsharedmemory15
   665 // Test Case ID: OPENENV-LIBC-CIT-5946
   666 // API tested: shm_unlink()
   667 // Description: To delete the shared memory with NULL as the input
   668 // -----------------------------------------------------------------------------
   669 
   670 TInt CTestsharedmemory::Testsharedmemory15 (  )
   671 	{	
   672 	int ret, ret1 = KErrGeneral;
   673 	ret = shm_unlink(NULL);
   674 	if((ret != -1) || (errno != EFAULT) )
   675 		{
   676 		ERR_PRINTF1(_L("shm_unlink() failed on negative test"));
   677 		goto close;	
   678 		}
   679 	INFO_PRINTF1(_L("shm_unlink() successfully returned EFAULT on negative test"));
   680 	ret1 = KErrNone;
   681 	
   682 	close:
   683 	return ret1;
   684 	}
   685 
   686 // -----------------------------------------------------------------------------
   687 // CTestsharedmemory::Testsharedmemory16
   688 // Test Case ID: OPENENV-LIBC-CIT-5946
   689 // API tested: shm_unlink()
   690 // Description: Trying to delete an empty string shared memory
   691 // -----------------------------------------------------------------------------
   692 
   693 TInt CTestsharedmemory::Testsharedmemory16 (  )
   694 	{	
   695 	int ret, ret1 = KErrGeneral;
   696 	ret = shm_unlink("");
   697 	if((ret != -1) || (errno != ENOENT) )
   698 		{
   699 		ERR_PRINTF1(_L("shm_unlink() failed on negative test"));
   700 		goto close;	
   701 		}
   702 	INFO_PRINTF1(_L("shm_unlink() successfully returned ENOENT on negative test"));
   703 	ret1 = KErrNone;
   704 	
   705 	close:
   706 	return ret1;	
   707 	}
   708 
   709 // -----------------------------------------------------------------------------
   710 // CTestsharedmemory::Testsharedmemory17
   711 // Test Case ID: OPENENV-LIBC-CIT-5946
   712 // API tested: shm_open(), shm_unlink()
   713 // Description: Writing into a shared memory and reading it
   714 // -----------------------------------------------------------------------------
   715 
   716 TInt CTestsharedmemory::Testsharedmemory17 (  )
   717 	{
   718 	TPtrC Shmname;
   719 	int ret, ret1 = KErrGeneral, fd;
   720 	TBuf8<50> shmname ;
   721 	char buf1[15] = "Sharedmemory", buf2[15], filename[50];
   722     ret = GetStringFromConfig(ConfigSection(), _L("Shmname"), Shmname );
   723     shmname.Copy(Shmname) ; 
   724 	char *file = (char *) shmname.Ptr() ;
   725     if(ret == 0)  
   726 		{
   727 		ERR_PRINTF1(_L("Failed to read input file name") );
   728      	goto close;
   729 		}
   730 	file[shmname.Length()] = '\0' ;
   731 	strcpy(filename , file) ;
   732 	fd = shm_open(filename,O_CREAT|O_RDWR,0777);
   733 	if (fd <= 0)
   734 		{
   735 		ERR_PRINTF2(_L("Error in opening the file and errno is %d"),errno);
   736 		goto close;
   737 		}
   738 	INFO_PRINTF1(_L("Successfully able to create a shared memory"));
   739 	ret = write(fd,buf1,13);
   740 	if(ret == -1)
   741 		{
   742 		ERR_PRINTF2(_L("Error in writing into a file and errno is %d"),errno);
   743 		goto close;
   744 		}
   745 	INFO_PRINTF1(_L("Successfully able to write in a shared memory"));
   746 	ret =  close(fd);
   747 	if(ret != 0)
   748 		{
   749 		ERR_PRINTF2(_L("Error in closing the file and errno is %d"),errno);
   750 		goto close;		
   751 		}
   752 	fd = shm_open(filename,O_RDWR,0777);
   753 	if (fd <= 0)
   754 		{
   755 		ERR_PRINTF2(_L("Error in opening the file and errno is %d"),errno);
   756 		goto close;
   757 		}
   758 	INFO_PRINTF1(_L("Successfully able to open a shared memory"));
   759 	ret = read(fd,buf2,13);
   760 	if(ret == -1)
   761 		{
   762 		ERR_PRINTF2(_L("Error in reading into a file and errno is %d"),errno);
   763 		goto close;
   764 		}
   765 	ret = strncmp(buf1,buf2,12);
   766 	if (ret != 0)
   767 		{
   768 		ERR_PRINTF1(_L("Input and output buffer are not same"));
   769 		goto close;
   770 		}
   771 	ret = closenunlink(fd,filename);
   772 	if(ret == KErrGeneral)
   773 		{
   774 		ERR_PRINTF1(_L("Error in deleting the file"));
   775 		goto close;		
   776 		}
   777 	ret1 = KErrNone;
   778 	
   779 	close:
   780 	return ret1;
   781 	}
   782 
   783 // -----------------------------------------------------------------------------
   784 // CTestsharedmemory::Testsharedmemory18
   785 // Test Case ID: OPENENV-LIBC-CIT-5946
   786 // API tested: shm_open(), shm_unlink()
   787 // Description: Checking the size of shared memory when opened using O_CREAT and O_TRUNC
   788 // -----------------------------------------------------------------------------
   789 
   790 TInt CTestsharedmemory::Testsharedmemory18 (  )
   791 	{
   792 	TPtrC Shmname;
   793 	int ret, ret1 = KErrGeneral, fd;
   794 	TBuf8<50> shmname ;
   795 	char filename[50];
   796 	struct stat statbuf;
   797     ret = GetStringFromConfig(ConfigSection(), _L("Shmname"), Shmname );
   798     shmname.Copy(Shmname) ; 
   799 	char *file = (char *) shmname.Ptr() ;
   800     if(ret == 0)  
   801 		{
   802 		ERR_PRINTF1(_L("Failed to read input file name") );
   803      	goto close;
   804 		}
   805 	file[shmname.Length()] = '\0' ;
   806 	strcpy(filename , file) ;
   807 	fd = shm_open(filename,O_CREAT|O_TRUNC,0777);
   808 	if (fd <= 0)
   809 		{
   810 		ERR_PRINTF2(_L("Error in opening the shared memory and errno is %d"),errno);
   811 		goto close;
   812 		}
   813 	INFO_PRINTF1(_L("Successfully able to create a shared memory"));
   814 	ret = fstat(fd,&statbuf);
   815 	if(statbuf.st_size != 0)
   816 		{
   817 		ERR_PRINTF2(_L("shared memory not truncated when created and errno is %d"),errno);
   818 		close(fd);
   819 		shm_unlink(filename);
   820 		goto close;
   821 		}	
   822 	INFO_PRINTF1(_L("shm_open() successfully truncated shared memory to size zero with O_CREAT and O_TRUNC flag"));
   823 	ret1 = KErrNone;
   824 	close(fd);
   825 	shm_unlink(filename);
   826 	close:
   827 	return ret1;
   828 	}
   829 
   830 // -----------------------------------------------------------------------------
   831 // CTestsharedmemory::Testsharedmemory19
   832 // Test Case ID: OPENENV-LIBC-CIT-5946
   833 // API tested: shm_open(), shm_unlink()
   834 // Description: To truncate the shared memory object by setting O_TRUNC flag.
   835 // -----------------------------------------------------------------------------
   836 
   837 TInt CTestsharedmemory::Testsharedmemory19 (  )
   838 	{
   839 	TPtrC Shmname;
   840 	int ret, ret1 = KErrGeneral, fd;
   841 	TBuf8<50> shmname ;
   842 	char buf1[15] = "Sharedmemory", buf2[15], filename[50];
   843     ret = GetStringFromConfig(ConfigSection(), _L("Shmname"), Shmname );
   844     shmname.Copy(Shmname) ; 
   845 	char *file = (char *) shmname.Ptr() ;
   846     if(ret == 0)  
   847 		{
   848 		ERR_PRINTF1(_L("Failed to read input file name") );
   849      	goto close;
   850 		}
   851 	file[shmname.Length()] = '\0' ;
   852 	strcpy(filename , file) ;
   853 	fd = shm_open(filename,O_CREAT|O_RDWR,0777);
   854 	if (fd <= 0)
   855 		{
   856 		ERR_PRINTF2(_L("Error in opening the file and errno is %d"),errno);
   857 		goto close;
   858 		}
   859 	INFO_PRINTF1(_L("Successfully able to create a shared memory"));
   860 	ret = write(fd,buf1,12);
   861 	if(ret == -1)
   862 		{
   863 		ERR_PRINTF2(_L("Error in writing into a file and errno is %d"),errno);
   864 		goto close;
   865 		}
   866 	INFO_PRINTF1(_L("Successfully able to write in a shared memory"));
   867 	ret =  close(fd);
   868 	if(ret != 0)
   869 		{
   870 		ERR_PRINTF2(_L("Error in closing the file and errno is %d"),errno);
   871 		goto close;		
   872 		}
   873 	fd = shm_open(filename,O_TRUNC,0777);
   874 	if (fd <= 0)
   875 		{
   876 		ERR_PRINTF2(_L("Error in opening the file and errno is %d"),errno);
   877 		goto close;
   878 		}
   879 	INFO_PRINTF1(_L("Successfully able to open the shared memory with O_TRUNC flag"));
   880 	ret = read(fd,buf2,12);
   881 	if(ret != 0)
   882 		{
   883 		ERR_PRINTF2(_L("file not trsuncated and errno is %d"),errno);
   884 		closenunlink(fd,filename);
   885 		goto close;
   886 		}
   887 	INFO_PRINTF1(_L("Successfully able to truncate"));
   888 	ret = closenunlink(fd,filename);
   889 	if(ret == KErrGeneral)
   890 		{
   891 		ERR_PRINTF1(_L("Error in deleting the file"));
   892 		goto close;		
   893 		}
   894 	ret1 = KErrNone;
   895 	
   896 	close:
   897 	return ret1;
   898 	}
   899 
   900 // -----------------------------------------------------------------------------
   901 // CTestsharedmemory::Testsharedmemory20
   902 // Test Case ID: OPENENV-LIBC-CIT-5946
   903 // API tested: shm_open(), shm_unlink()
   904 // Description: Trying to write into the shared memory with O_RDONLY flag
   905 //				write() should fail with EBADF
   906 // -----------------------------------------------------------------------------
   907 
   908 TInt CTestsharedmemory::Testsharedmemory20 (  )
   909 	{
   910 	TPtrC Shmname;
   911 	int ret, ret1 = KErrGeneral, fd;
   912 	TBuf8<50> shmname ;
   913 	char buf[15] = "Sharedmemory", filename[50];
   914     ret = GetStringFromConfig(ConfigSection(), _L("Shmname"), Shmname );
   915     shmname.Copy(Shmname) ; 
   916 	char *file = (char *) shmname.Ptr() ;
   917     if(ret == 0)  
   918 		{
   919 		ERR_PRINTF1(_L("Failed to read input file name") );
   920      	goto close;
   921 		}
   922 	file[shmname.Length()] = '\0' ;
   923 	strcpy(filename , file) ;
   924 	fd = shm_open(filename,O_CREAT|O_RDONLY,0777);
   925 	if (fd <= 0)
   926 		{
   927 		ERR_PRINTF2(_L("Error in opening the file and errno is %d"),errno);
   928 		goto close;
   929 		}
   930 	INFO_PRINTF1(_L("Successfully able to create a shared memory"));
   931 	ret = write(fd,buf,7);
   932 	if(ret != -1)
   933 		{
   934 		ERR_PRINTF2(_L("shm_open() failed on negative test and errno is %d"),errno);
   935 		closenunlink(fd,filename);
   936 		goto close;
   937 		}
   938 	if ((ret == -1) && (errno == EBADF))
   939 		{
   940 		INFO_PRINTF3(_L("Shm_open() successfully passed on negative test with return = %d and errno = %d"), ret, errno);
   941 		}
   942 	ret = closenunlink(fd,filename);
   943 	if(ret == KErrGeneral)
   944 		{
   945 		ERR_PRINTF1(_L("Error in deleting the file"));
   946 		goto close;		
   947 		}
   948 	ret1 = KErrNone;
   949 	
   950 	close:
   951 	return ret1;
   952 	}
   953 
   954 // -----------------------------------------------------------------------------
   955 // CTestsharedmemory::Testsharedmemory21
   956 // Test Case ID: OPENENV-LIBC-CIT-5946
   957 // API tested: shm_open(), shm_unlink()
   958 // Description: Trying to write to a file with O_TRUNC and O_RDWR
   959 // -----------------------------------------------------------------------------
   960 
   961 TInt CTestsharedmemory::Testsharedmemory21 (  )
   962 	{
   963 	TPtrC Shmname;
   964 	int ret, ret1 = KErrGeneral, fd;
   965 	TBuf8<50> shmname ;
   966 	char buf1[15] = "Sharedmemory", buf2[15], filename[50];
   967     ret = GetStringFromConfig(ConfigSection(), _L("Shmname"), Shmname );
   968     shmname.Copy(Shmname) ; 
   969     char *file = (char *) shmname.Ptr() ;
   970     if(ret == 0)  
   971 		{
   972 		ERR_PRINTF1(_L("Failed to read input file name") );
   973      	goto close;
   974 		}
   975     
   976 	file[shmname.Length()] = '\0' ;
   977 	strcpy(filename , file) ;
   978 	fd = shm_open(filename,O_CREAT|O_RDWR,0777);
   979 	if (fd <= 0)
   980 		{
   981 		ERR_PRINTF2(_L("Error in opening the file and errno is %d"),errno);
   982 		goto close;
   983 		}
   984 	INFO_PRINTF1(_L("Successfully able to create a shared memory"));
   985 	ret =  close(fd);
   986 	if(ret != 0)
   987 		{
   988 		ERR_PRINTF2(_L("Error in closing the file and errno is %d"),errno);
   989 		goto close;		
   990 		}
   991 	fd = shm_open(filename,O_TRUNC|O_RDWR,0777);
   992 	if (fd <= 0)
   993 		{
   994 		ERR_PRINTF2(_L("Error in opening the file and errno is %d"),errno);
   995 		goto close;
   996 		}
   997 	INFO_PRINTF1(_L("Successfully able to open a shared memory with an O_TRUNC flag"));
   998 	ret = write(fd,buf1,12);
   999 	if(ret == -1)
  1000 		{
  1001 		ERR_PRINTF2(_L("Error in writing into a file and errno is %d"),errno);
  1002 		goto close;
  1003 		}
  1004 	INFO_PRINTF1(_L("Successfully able to write in a shared memory"));
  1005 	ret =  close(fd);
  1006 	if(ret != 0)
  1007 		{
  1008 		ERR_PRINTF2(_L("Error in closing the file and errno is %d"),errno);
  1009 		goto close;		
  1010 		}
  1011 	fd = shm_open(filename,O_RDWR,0777);
  1012 	if (fd <= 0)
  1013 		{
  1014 		ERR_PRINTF2(_L("Error in opening the file and errno is %d"),errno);
  1015 		goto close;
  1016 		}
  1017 	INFO_PRINTF1(_L("Successfully able to open a shared memory with an O_TRUNC flag"));
  1018 	ret = read(fd,buf2,12);
  1019 	if(ret == -1)
  1020 		{
  1021 		ERR_PRINTF2(_L("error in reading from a file and errno is %d"),errno);
  1022 		goto close;
  1023 		}
  1024 	ret = strncmp(buf1,buf2,12);
  1025 	if (ret != 0)
  1026 		{
  1027 		ERR_PRINTF1(_L("Input and output buffer are not same"));
  1028 		goto close;
  1029 		}
  1030 	INFO_PRINTF1(_L("Successfully able to read the contents of shared memory"));
  1031 	ret = closenunlink(fd,filename);
  1032 	if(ret == KErrGeneral)
  1033 		{
  1034 		ERR_PRINTF1(_L("Error in deleting the file"));
  1035 		goto close;		
  1036 		}
  1037 	ret1 = KErrNone;
  1038 	
  1039 	close:
  1040 	return ret1;
  1041 	}
  1042 
  1043 // -----------------------------------------------------------------------------
  1044 // CTestsharedmemory::Testsharedmemory22
  1045 // Test Case ID: OPENENV-LIBC-CIT-5946
  1046 // API tested: shm_open(), shm_unlink()
  1047 // Description: Trying to write to a file with only O_TRUNC flag set
  1048 //				write() should fail with EBADF
  1049 // -----------------------------------------------------------------------------
  1050 
  1051 TInt CTestsharedmemory::Testsharedmemory22 (  )
  1052 	{
  1053 	TPtrC Shmname;
  1054 	int ret, ret1 = KErrGeneral, fd;
  1055 	TBuf8<50> shmname ;
  1056 	char buf1[15] = "Sharedmemory", buf2[12] = "symbianpips", filename[50];
  1057     ret = GetStringFromConfig(ConfigSection(), _L("Shmname"), Shmname );
  1058     shmname.Copy(Shmname) ; 
  1059 	char *file = (char *) shmname.Ptr() ;
  1060     if(ret == 0)  
  1061 		{
  1062 		ERR_PRINTF1(_L("Failed to read input file name") );
  1063      	goto close;
  1064 		}
  1065 	file[shmname.Length()] = '\0' ;
  1066 	strcpy(filename , file) ;
  1067 	fd = shm_open(filename,O_CREAT|O_RDWR,0777);
  1068 	if (fd <= 0)
  1069 		{
  1070 		ERR_PRINTF2(_L("Error in creating shared memory and errno is %d"),errno);
  1071 		goto close;
  1072 		}
  1073 	INFO_PRINTF1(_L("Successfully able to create a shared memory"));
  1074 	ret = write(fd,buf1,12);
  1075 	if(ret == -1)
  1076 		{
  1077 		ERR_PRINTF2(_L("Error in writing into shared memory and errno is %d"),errno);
  1078 		goto close;
  1079 		}
  1080 	ret =  close(fd);
  1081 	if(ret != 0)
  1082 		{
  1083 		ERR_PRINTF2(_L("Error in closing shared memory and errno is %d"),errno);
  1084 		goto close;		
  1085 		}
  1086 	INFO_PRINTF1(_L("Successfully able to write to shared memory"));
  1087 	fd = shm_open(filename,O_TRUNC,0777);
  1088 	if (fd < 0)
  1089 		{
  1090 		ERR_PRINTF2(_L("Error in opening shared memory with O_TRUNC and errno is %d"),errno);
  1091 		close(fd);
  1092 		shm_unlink(filename);
  1093 		goto close;
  1094 		}
  1095 	INFO_PRINTF1(_L("Successfully able to open a shared memory with O_TRUNC"));
  1096 	ret = write(fd,buf2,12);
  1097 	if ((ret != -1) && (errno != EBADF))
  1098 		{
  1099 		ERR_PRINTF2(_L("Error in writing into shared memory and errno is %d"),errno);
  1100 		ERR_PRINTF1(_L("shm_open() negative test failed"));
  1101 		goto close;
  1102 		}
  1103 	INFO_PRINTF1(_L("shm_open() negative test successful"));
  1104 	ret =  close(fd);
  1105 	if(ret != 0)
  1106 		{
  1107 		ERR_PRINTF2(_L("Error in closing shared memory and errno is %d"),errno);
  1108 		goto close;		
  1109 		}
  1110 	ret = shm_unlink(filename);
  1111 	if(ret == KErrGeneral)
  1112 		{
  1113 		ERR_PRINTF1(_L("Error in removing shared memory"));
  1114 		goto close;		
  1115 		}
  1116 	ret1 = KErrNone;
  1117 	
  1118 	close:
  1119 	return ret1;
  1120 	}
  1121 
  1122 // -----------------------------------------------------------------------------
  1123 // CTestsharedmemory::Testsharedmemory23
  1124 // Test Case ID: OPENENV-LIBC-CIT-5946
  1125 // API tested: shm_open(), shm_unlink()
  1126 // Description: Trying to open a shared memory using O_CREAT|O_EXCL|O_TRUNC|O_RDWR flag
  1127 // -----------------------------------------------------------------------------
  1128 
  1129 TInt CTestsharedmemory::Testsharedmemory23 (  )
  1130 	{
  1131 	TPtrC Shmname;
  1132 	int ret, ret1 = KErrGeneral, fd;
  1133 	TBuf8<50> shmname ;
  1134 	char filename[50];
  1135     ret = GetStringFromConfig(ConfigSection(), _L("Shmname"), Shmname );
  1136     shmname.Copy(Shmname) ; 
  1137 	char *file = (char *) shmname.Ptr() ;
  1138     if(ret == 0)  
  1139 		{
  1140 		ERR_PRINTF1(_L("Failed to read input file name") );
  1141      	goto close;
  1142 		}
  1143 	file[shmname.Length()] = '\0' ;
  1144 	strcpy(filename , file) ;
  1145 	fd = shm_open(filename,O_CREAT|O_EXCL|O_TRUNC|O_RDWR,0777);
  1146 	if (fd <= 0)
  1147 		{
  1148 		ERR_PRINTF2(_L("Error in opening the file and errno is %d"),errno);
  1149 		goto close;
  1150 		}
  1151 	INFO_PRINTF1(_L("Successfully able to create a shared memory"));
  1152 	ret =  close(fd);
  1153 	if(ret != 0)
  1154 		{
  1155 		ERR_PRINTF2(_L("Error in closing the file and errno is %d"),errno);
  1156 		goto close;		
  1157 		}
  1158 	fd = shm_open(filename,O_CREAT|O_EXCL|O_TRUNC,0777);
  1159 	if ((fd != -1) || (errno != EEXIST))
  1160 		{
  1161 		ERR_PRINTF2(_L("shm_open() failed on negative test and errno is %d\n"),errno);
  1162 		close(fd);
  1163 		shm_unlink(filename);
  1164 		goto close;
  1165 		}
  1166 	INFO_PRINTF1(_L("shm_open() is success on negative test"));
  1167 	ret = shm_unlink(filename);
  1168 	if(ret == KErrGeneral)
  1169 		{
  1170 		ERR_PRINTF1(_L("Error in deleting the file"));
  1171 		goto close;		
  1172 		}
  1173 	ret1 = KErrNone;
  1174 	
  1175 	close:
  1176 	return ret1;	
  1177 	}
  1178 
  1179 // -----------------------------------------------------------------------------
  1180 // CTestsharedmemory::Testsharedmemory24
  1181 // Test Case ID: OPENENV-LIBC-CIT-5946
  1182 // API tested: shm_open(), shm_unlink()
  1183 // Description: To seek the contents of shared memory using lseek() using SEEK_SET
  1184 // -----------------------------------------------------------------------------
  1185 
  1186 TInt CTestsharedmemory::Testsharedmemory24 (  )
  1187 	{	
  1188 	TPtrC Shmname;
  1189 	int ret, ret1 = KErrGeneral, fd;
  1190 	TBuf8<50> shmname ;
  1191 	char buf1[15] = "Sharedmemory";
  1192 	char buf2[15], buf3[15], filename[50];
  1193     ret = GetStringFromConfig(ConfigSection(), _L("Shmname"), Shmname );
  1194     shmname.Copy(Shmname) ; 
  1195 	char *file = (char *) shmname.Ptr() ;
  1196     if(ret == 0)  
  1197 		{
  1198 		ERR_PRINTF1(_L("Failed to read input file name") );
  1199      	goto close;
  1200 		}
  1201 	file[shmname.Length()] = '\0' ;
  1202 	strcpy(filename , file) ;
  1203 	fd = shm_open(filename,O_CREAT|O_RDWR,0777);
  1204 	INFO_PRINTF2(_L("shm_open() returns = %d"),fd);
  1205 	if (fd <=0 )
  1206 		{
  1207 		INFO_PRINTF2(_L("error in shm_open and errno is %d"),errno);
  1208 		goto close;
  1209 		}
  1210 	ret = write(fd,buf1,7);
  1211 	INFO_PRINTF2(_L("write returns = %d"),ret);
  1212 	if(ret == -1)
  1213 		{
  1214 		INFO_PRINTF2(_L("error in writing into a file and errno is %d"),errno);
  1215 		close(fd);
  1216 		shm_unlink(filename);
  1217 		goto close;
  1218 		}
  1219 	ret = close(fd);
  1220 	if(ret != 0)
  1221 		{
  1222 		ERR_PRINTF2(_L("Error in closing the file and errno is %d"),errno);		
  1223 		goto close;		
  1224 		}
  1225 	fd = shm_open(filename,O_RDWR,0777);
  1226 	INFO_PRINTF2(_L("shm_open() returns = %d "),fd);
  1227 	if (fd <=0 )
  1228 		{
  1229 		INFO_PRINTF2(_L("error in shm_open and errno is %d"),errno);
  1230 		goto close;
  1231 		}
  1232 	ret = read(fd,buf2,10);
  1233 	INFO_PRINTF2(_L("read returns = %d"),ret);
  1234 	if(ret < 0)
  1235 		{
  1236 		INFO_PRINTF2(_L("not able to read from a shmem and  errno is %d"),errno);
  1237 		close(fd);
  1238 		shm_unlink(filename);
  1239 		goto close;
  1240 		}
  1241 	ret = lseek(fd,0,SEEK_SET);
  1242 	INFO_PRINTF2(_L("lseek returns = %d"),ret);
  1243 	if(ret == -1)
  1244 		{
  1245 		INFO_PRINTF2(_L("Failed to move the offset using lseek() and  errno is %d"),errno);
  1246 		close(fd);
  1247 		shm_unlink(filename);
  1248 		goto close;		
  1249 		}
  1250 	ret = read(fd,buf3,10);
  1251 	INFO_PRINTF2(_L("read returns = %d"),ret);
  1252 	if(ret == -1)
  1253 		{
  1254 		ERR_PRINTF2(_L("error in reading from a file and errno is %d"),errno);
  1255 		close(fd);
  1256 		shm_unlink(filename);
  1257 		goto close;
  1258 		}
  1259 	ret = strncmp(buf3,buf2,7);
  1260 	if (ret != 0)
  1261 		{
  1262 		ERR_PRINTF1(_L("Input and output buffer are not same"));
  1263 	ret = closenunlink(fd,filename);
  1264 	if(ret == KErrGeneral)
  1265 		{
  1266 		ERR_PRINTF1(_L("Error in deleting the file"));
  1267 		goto close;		
  1268 		}
  1269 		goto close;
  1270 		}
  1271 	INFO_PRINTF1(_L("Successfully able to read the contents of a shared memory using SEEK_SET"));
  1272 	ret = closenunlink(fd,filename);
  1273 	if(ret == KErrGeneral)
  1274 		{
  1275 		ERR_PRINTF1(_L("Error in deleting the file"));
  1276 		goto close;		
  1277 		}
  1278 	ret1 = KErrNone;
  1279 	
  1280 	close:
  1281 	return ret1;
  1282 	}
  1283 
  1284 // -----------------------------------------------------------------------------
  1285 // CTestsharedmemory::Testsharedmemory25
  1286 // Test Case ID: OPENENV-LIBC-CIT-5946
  1287 // API tested: shm_open(), shm_unlink()
  1288 // Description: Description: To seek the contents of shared memory using lseek() using SEEK_CUR
  1289 // -----------------------------------------------------------------------------
  1290 
  1291 TInt CTestsharedmemory::Testsharedmemory25 (  )
  1292 	{	
  1293 	TPtrC Shmname;
  1294 	int ret, ret1 = KErrGeneral, fd;
  1295 	TBuf8<50> shmname ;
  1296 	char buf1[15] = "symbian", buf2[15], buf3[15], filename[50];
  1297     ret = GetStringFromConfig(ConfigSection(), _L("Shmname"), Shmname );
  1298     shmname.Copy(Shmname) ; 
  1299 	char *file = (char *) shmname.Ptr() ;
  1300 	if(ret == 0)  
  1301 		{
  1302 		ERR_PRINTF1(_L("Failed to read input file name") );
  1303      	goto close;
  1304 		}
  1305 	file[shmname.Length()] = '\0' ;
  1306 	strcpy(filename , file) ;
  1307 	fd = shm_open(filename,O_CREAT|O_RDWR,0777);
  1308 	INFO_PRINTF2(_L("shm_open() returns = %d"),fd);
  1309 	if (fd <= 0 )
  1310 		{
  1311 		INFO_PRINTF2(_L("error in shm_open and errno is %d"),errno);
  1312 		goto close;
  1313 		}
  1314 	ret = write(fd,buf1,7);
  1315 	INFO_PRINTF2(_L("write() returns = %d"),ret);
  1316 	if(ret == -1)
  1317 		{
  1318 		INFO_PRINTF2(_L("error in writing into a file and errno is %d"),errno);
  1319 		goto close;
  1320 		}
  1321 	ret = close(fd);
  1322 	if(ret != 0)
  1323 		{
  1324 		ERR_PRINTF2(_L("Error in closing the file and errno is %d"),errno);
  1325 		goto close;		
  1326 		}
  1327 	fd = shm_open(filename,O_RDWR,0777);
  1328 	INFO_PRINTF2(_L("shm_open() returns = %d"),fd);
  1329 	if (fd <= 0 )
  1330 		{
  1331 		INFO_PRINTF2(_L("error in shm_open and errno is %d"),errno);
  1332 		goto close;
  1333 		}
  1334 	ret = read(fd,buf2,7);
  1335 	INFO_PRINTF2(_L("read() returns = %d"),ret);
  1336 	if(ret == -1)
  1337 		{
  1338 		ERR_PRINTF2(_L("error in reading from a file and errno is %d"),errno);
  1339 		goto close;
  1340 		}
  1341 	ret = lseek(fd,-7,SEEK_CUR);
  1342 	INFO_PRINTF2(_L("lseek() returns = %d"),ret);
  1343 	if(ret == -1)
  1344 		{
  1345 		INFO_PRINTF2(_L("Failed to move the offset using lseek() and  errno is %d"),errno);
  1346 		goto close;		
  1347 		}
  1348 	ret = read(fd,buf3,7);
  1349 	INFO_PRINTF2(_L("read() returns = %d"),ret);
  1350 	if(ret == -1)
  1351 		{
  1352 		ERR_PRINTF2(_L("error in reading from a file and errno is %d"),errno);
  1353 		goto close;
  1354 		}
  1355 	ret = strncmp(buf3,buf2,7);
  1356 	if (ret != 0)
  1357 		{
  1358 		ERR_PRINTF1(_L("Input and output buffer are not same"));
  1359 		goto close;
  1360 		}
  1361 	INFO_PRINTF1(_L("Successfully able to read the contents of a shared memory using SEEK_CUR"));
  1362 	ret = closenunlink(fd,filename);
  1363 	if(ret == KErrGeneral)
  1364 		{
  1365 		ERR_PRINTF1(_L("Error in deleting the file"));
  1366 		goto close;		
  1367 		}
  1368 	ret1 = KErrNone;
  1369 	
  1370 	close:
  1371 	return ret1;
  1372 	}
  1373 
  1374 // -----------------------------------------------------------------------------
  1375 // CTestsharedmemory::Testsharedmemory26
  1376 // Test Case ID: OPENENV-LIBC-CIT-5946
  1377 // API tested: shm_open(), shm_unlink()
  1378 // Description: Description: Combined test for file related operations(read,write,lseek) on shared memory
  1379 // -----------------------------------------------------------------------------
  1380 
  1381 TInt CTestsharedmemory::Testsharedmemory26 (  )
  1382 	{	
  1383 	TPtrC Shmname;
  1384 	int ret, ret1 = KErrGeneral, fd;
  1385 	TBuf8<50> shmname ;
  1386 	char buf[25];
  1387 	char filename[50];
  1388     ret = GetStringFromConfig(ConfigSection(), _L("Shmname"), Shmname );
  1389     shmname.Copy(Shmname) ; 
  1390 	char *file = (char *) shmname.Ptr() ;
  1391     if(ret == 0)  
  1392 		{
  1393 		ERR_PRINTF1(_L("Failed to read input file name") );
  1394      	goto close;
  1395 		}
  1396 	file[shmname.Length()] = '\0' ;
  1397 	strcpy(filename , file) ;
  1398 	fd = shm_open(filename, O_CREAT|O_RDWR , 0666);
  1399 	if (fd <= 0 )
  1400 		{
  1401 		INFO_PRINTF2(_L("error in shm_open and errno is %d\n"),errno);
  1402 		goto close;
  1403 		}
  1404 	ret = write(fd, "helloworldss", 6);
  1405 	if(ret == -1)
  1406 		{
  1407 		ERR_PRINTF2(_L("Error in writing into a file and errno is %d"),errno);
  1408 		goto close;
  1409 		}
  1410 	INFO_PRINTF1(_L("Successfully able to write in a shared memory"));
  1411 	ret = write(fd, "gimmick", 6);
  1412 	if(ret == -1)
  1413 		{
  1414 		ERR_PRINTF2(_L("Error in writing into a file and errno is %d"),errno);
  1415 		goto close;
  1416 		}
  1417 	INFO_PRINTF1(_L("Successfully able to write in a shared memory"));
  1418 	ret = lseek(fd, 3, SEEK_CUR);
  1419 	if(ret == -1)
  1420 		{
  1421 		ERR_PRINTF2(_L("Error in lseek() into a file and errno is %d"),errno);
  1422 		goto close;
  1423 		}
  1424 	INFO_PRINTF1(_L("Successfully able use lseek on a shared memory"));
  1425 	ret = write(fd, "biswajeet", 9);
  1426 	if(ret == -1)
  1427 		{
  1428 		ERR_PRINTF2(_L("Error in writing into a file and errno is %d"),errno);
  1429 		goto close;
  1430 		}
  1431 	INFO_PRINTF1(_L("Successfully able to write in a shared memory"));
  1432 	ret = lseek(fd, -18, SEEK_END);
  1433 	if(ret == -1)
  1434 		{
  1435 		ERR_PRINTF2(_L("Error in lseek() into a file and errno is %d"),errno);
  1436 		goto close;
  1437 		}
  1438 	INFO_PRINTF1(_L("Successfully able use lseek on a shared memory"));
  1439 	ret = read(fd, (void*)buf, 21);
  1440 	if(ret == -1)
  1441 		{
  1442 		ERR_PRINTF2(_L("Error in reading into a file and errno is %d"),errno);
  1443 		goto close;
  1444 		}
  1445 	ret = strncmp(buf, "gimmic", 6);
  1446 	if (ret != 0)
  1447 		{
  1448 		ERR_PRINTF1(_L("Input and output buffer are not same"));
  1449 		goto close;
  1450 		}
  1451 	ret = closenunlink(fd,filename);
  1452 	if(ret == KErrGeneral)
  1453 		{
  1454 		ERR_PRINTF1(_L("Error in deleting the file"));
  1455 		goto close;		
  1456 		}
  1457 	ret1 = KErrNone;
  1458 	
  1459 	close:
  1460 	return ret1;
  1461 	}
  1462 
  1463 // -----------------------------------------------------------------------------
  1464 // CTestsharedmemory::Testsharedmemory27
  1465 // Test Case ID: OPENENV-LIBC-CIT-5946
  1466 // API tested: shm_open(), shm_unlink()
  1467 // Description: To perform lseek operation on an invalid shared memory 
  1468 // -----------------------------------------------------------------------------
  1469 
  1470 TInt CTestsharedmemory::Testsharedmemory27 ( )
  1471 	{ 
  1472 	TPtrC Shmname;
  1473 	int ret, ret1 = KErrGeneral, fd;
  1474 	TBuf8<50> shmname ;
  1475 	char filename[50];
  1476 	ret = GetStringFromConfig(ConfigSection(), _L("Shmname"), Shmname );
  1477 	shmname.Copy(Shmname) ; 
  1478 	char *file = (char *) shmname.Ptr() ;
  1479 	if(ret == 0) 
  1480 		{
  1481 		ERR_PRINTF1(_L("Failed to read input file name") );
  1482 		goto close;
  1483 		}
  1484 	file[shmname.Length()] = '\0' ;
  1485 	strcpy(filename , file) ;
  1486 	fd = shm_open(filename, O_CREAT|O_RDWR , 0666);
  1487 	if (fd <= 0 )
  1488 		{
  1489 		ERR_PRINTF2(_L("error in shm_open and errno is %d\n"),errno);
  1490 		goto close;
  1491 		}
  1492 	INFO_PRINTF1(_L("shm_open() successful"));
  1493 	ret = close(fd);
  1494 	if(ret != 0)
  1495 		{
  1496 		ERR_PRINTF1(_L("Error in closing fd"));
  1497 		goto close; 
  1498 		}
  1499 	INFO_PRINTF1(_L("close() successful"));
  1500 	ret = lseek(fd, 0, SEEK_SET);
  1501 	if((ret != -1) || (errno != EBADF))
  1502 		{
  1503 		ERR_PRINTF2(_L("lseek() failed on negative test for a shared memory and errno is %d"),errno);
  1504 		goto close;
  1505 		}
  1506 	INFO_PRINTF1(_L("lseek() successfully returned EBADF on negative test"));
  1507 	ret = shm_unlink(filename);
  1508 	if(ret != 0)
  1509 		{
  1510 		ERR_PRINTF1(_L("shm_unlink() unsuccessful"));
  1511 		goto close; 
  1512 		}
  1513 	INFO_PRINTF1(_L("shm_unlink() successful"));
  1514 	ret1 = KErrNone;
  1515 
  1516 	close:
  1517 	return ret1;
  1518 	}
  1519 
  1520 // -----------------------------------------------------------------------------
  1521 // CTestsharedmemory::Testsharedmemory28
  1522 // Test Case ID: OPENENV-LIBC-CIT-5946
  1523 // API tested: shm_open(), shm_unlink()
  1524 // Description: To perform lseek operation on shared memory when whence option is an invalid value 
  1525 // -----------------------------------------------------------------------------
  1526 
  1527 TInt CTestsharedmemory::Testsharedmemory28 ( )
  1528 	{ 
  1529 	TPtrC Shmname;
  1530 	int ret, ret1 = KErrGeneral, fd;
  1531 	TBuf8<50> shmname ;
  1532 	char filename[50];
  1533 	ret = GetStringFromConfig(ConfigSection(), _L("Shmname"), Shmname );
  1534 	shmname.Copy(Shmname) ; 
  1535 	char *file = (char *) shmname.Ptr() ;
  1536 	if(ret == 0) 
  1537 		{
  1538 		ERR_PRINTF1(_L("Failed to read input file name") );
  1539 		goto close;
  1540 		}
  1541 	file[shmname.Length()] = '\0' ;
  1542 	strcpy(filename , file) ;
  1543 	fd = shm_open(filename, O_CREAT|O_RDWR , 0666);
  1544 	if (fd <= 0 )
  1545 		{
  1546 		INFO_PRINTF2(_L("error in shm_open and errno is %d\n"),errno);
  1547 		goto close;
  1548 		}
  1549 	ret = lseek(fd, 0, 6);
  1550 	if((ret != -1) || (errno != EINVAL))
  1551 		{
  1552 		ERR_PRINTF2(_L("lseek() failed on negative test for a shared memory and errno is %d"),errno);
  1553 		goto close;
  1554 		}
  1555 	INFO_PRINTF1(_L("lseek() successfully returned EINVAL on negative test"));
  1556 	ret = closenunlink(fd,filename);
  1557 	if(ret == KErrGeneral)
  1558 		{
  1559 		ERR_PRINTF1(_L("Error in deleting the file"));
  1560 		goto close; 
  1561 		}
  1562 	ret1 = KErrNone;
  1563 
  1564 	close:
  1565 	return ret1;
  1566 	}
  1567 	
  1568 // -----------------------------------------------------------------------------
  1569 // CTestsharedmemory::Testsharedmemory29
  1570 // Test Case ID: OPENENV-LIBC-CIT-5946
  1571 // API tested: shm_open(), shm_unlink()
  1572 // Description: To open a shared memory using O_RDONLY flag and then try to write 
  1573 //				into it. write() should fail with EBADF 
  1574 // -----------------------------------------------------------------------------
  1575 
  1576 TInt CTestsharedmemory::Testsharedmemory29 ( )
  1577 	{ 
  1578 	TPtrC Shmname;
  1579 	int ret, ret1 = KErrGeneral, fd;
  1580 	TBuf8<50> shmname ;
  1581 	char buf1[15] = "Sharedmemory", buf2[12] = "symbianpips", filename[50], buf3[12];
  1582 	ret = GetStringFromConfig(ConfigSection(), _L("Shmname"), Shmname );
  1583 	shmname.Copy(Shmname) ; 
  1584 	char *file = (char *) shmname.Ptr() ;
  1585 	if(ret == 0) 
  1586 		{
  1587 		ERR_PRINTF1(_L("Failed to read input file name") );
  1588 		goto close;
  1589 		}
  1590 	file[shmname.Length()] = '\0' ;
  1591 	strcpy(filename , file) ;
  1592 	fd = shm_open(filename,O_CREAT|O_RDWR,0777);
  1593 	if (fd <= 0)
  1594 		{
  1595 		ERR_PRINTF2(_L("Error in creating shared memory and errno is %d"),errno);
  1596 		goto close;
  1597 		}
  1598 	INFO_PRINTF1(_L("Successfully able to create a shared memory"));
  1599 	ret = write(fd,buf1,12);
  1600 	if(ret == -1)
  1601 		{
  1602 		ERR_PRINTF2(_L("Error in writing into shared memory and errno is %d"),errno);
  1603 		goto close;
  1604 		}
  1605 	ret =  close(fd);
  1606 	if(ret != 0)
  1607 		{
  1608 		ERR_PRINTF2(_L("Error in closing shared memory and errno is %d"),errno);
  1609 		goto close;		
  1610 		}
  1611 	INFO_PRINTF1(_L("Successfully able to write to shared memory"));
  1612 	fd = shm_open(filename,O_RDONLY,0777);
  1613 	if (fd < 0)
  1614 		{
  1615 		ERR_PRINTF2(_L("Error in opening shared memory with O_RDONLY and errno is %d"),errno);
  1616 		goto close;
  1617 		}
  1618 	INFO_PRINTF1(_L("Successfully able to open a shared memory with O_RDONLY"));
  1619 	ret = read(fd,buf3,12);
  1620 	if(ret == -1)
  1621 		{
  1622 		ERR_PRINTF2(_L("Error in reading from shared memory and errno is %d"),errno);
  1623 		goto close;
  1624 		}
  1625 	if (strncmp(buf1, buf2, 12) != 0)
  1626 		{
  1627 		ERR_PRINTF1(_L("Error in reading from shared memory"));
  1628 		}
  1629 	INFO_PRINTF1(_L("Successfully able to read from a shared memory"));
  1630 	ret = write(fd,buf2,12);
  1631 	if ((ret != -1) && (errno != EBADF))
  1632 		{
  1633 		ERR_PRINTF2(_L("Error in writing into shared memory and errno is %d"),errno);
  1634 		ERR_PRINTF1(_L("shm_open() negative test failed"));
  1635 		goto close;
  1636 		}
  1637 	INFO_PRINTF1(_L("shm_open() negative test successful"));
  1638 	ret =  close(fd);
  1639 	if(ret != 0)
  1640 		{
  1641 		ERR_PRINTF2(_L("Error in closing shared memory and errno is %d"),errno);
  1642 		goto close;		
  1643 		}
  1644 	ret = shm_unlink(filename);
  1645 	if(ret == KErrGeneral)
  1646 		{
  1647 		ERR_PRINTF1(_L("Error in removing shared memory"));
  1648 		goto close;		
  1649 		}
  1650 	ret1 = KErrNone;
  1651 
  1652 	close:
  1653 	return ret1;
  1654 	}
  1655 
  1656 // -----------------------------------------------------------------------------
  1657 // CTestsharedmemory::Testsharedmemory30
  1658 // Test Case ID: OPENENV-LIBC-CIT-5946
  1659 // API tested: shm_open(), read(), write(), lseek()
  1660 // Description: negative test case for shm_open(), read(), write() , lseek(), fcntl()
  1661 // Purpose : Coverage
  1662 // -----------------------------------------------------------------------------
  1663 TInt CTestsharedmemory::Testsharedmemory30 (  )
  1664 	{	
  1665 	int ret, fd;
  1666 	char buf1[15] = "helloworldss", buf2[21];
  1667 	char filename[50] = "page";
  1668 	INFO_PRINTF1(_L("negative test case for coverage"));
  1669 	fd = shm_open(filename,O_CREAT|O_RDWR,0666);
  1670 	INFO_PRINTF2(_L("shm_open() returns = %d"),fd);
  1671 	if (fd <=0 )
  1672 		{
  1673 		ERR_PRINTF2(_L("error in shm_open and errno is %d"),errno);
  1674 		}
  1675 	ret = write(fd,buf1,6);
  1676 	INFO_PRINTF2(_L("write returns = %d"),ret);
  1677 	if(ret == -1)
  1678 		{
  1679 		ERR_PRINTF2(_L("error in writing into a file and errno is %d"),errno);
  1680 		}
  1681 	ret = write(fd,"gimmick",6);
  1682 	INFO_PRINTF2(_L("write returns = %d"),ret);
  1683 	if(ret == -1)
  1684 		{
  1685 		ERR_PRINTF2(_L("error in writing into a file and errno is %d"),errno);
  1686 		}
  1687 	ret = lseek(fd,-30,SEEK_END);
  1688 	INFO_PRINTF2(_L("lseek returns = %d"),ret);
  1689 	if(ret == -1)
  1690 		{
  1691 		INFO_PRINTF2(_L("Failed to move the offset using lseek() and  errno is %d"),errno);
  1692 		}
  1693 	ret = close(fd);
  1694 	INFO_PRINTF2(_L("close returns = %d"),ret);
  1695 	if(ret == -1)
  1696 		{
  1697 		ERR_PRINTF2(_L("Failed to close shared memory object using close() and  errno is %d"),errno);
  1698 		}
  1699 	fd = shm_open(filename,O_RDWR,0666);
  1700 	INFO_PRINTF2(_L("shm_open() returns = %d"),fd);
  1701 	if (fd <=0 )
  1702 		{
  1703 		ERR_PRINTF2(_L("error in shm_open and errno is %d"),errno);
  1704 		}
  1705 	ret = read(fd,buf2,6);
  1706 	INFO_PRINTF2(_L("read returns = %d"),ret);
  1707 	if(ret == -1)
  1708 		{
  1709 		ERR_PRINTF2(_L("error in reading from shared memory and errno is %d"),errno);
  1710 		}
  1711 	ret = fcntl(fd, F_GETFD);
  1712 	INFO_PRINTF2(_L("fcntl() with cmd F_GETFD returns = %d"),ret);
  1713 	if(ret < 0)
  1714 		{
  1715 		ERR_PRINTF1(_L("fcntl() with cmd F_GETFD failed"));
  1716 		}
  1717 	ret = fcntl(fd, F_SETFL, O_NONBLOCK);
  1718 	INFO_PRINTF2(_L("fcntl() with cmd F_GETFD and arg O_NONBLOCK returns = %d"),ret);
  1719 	if(ret == -1)
  1720 		{
  1721 		ERR_PRINTF1(_L("fcntl() with cmd F_GETFD and arg O_NONBLOCK failed"));
  1722 		}
  1723 	ret = fcntl(fd, F_SETFD, 1);
  1724 	INFO_PRINTF2(_L("fcntl() with cmd F_SETFD and arg 1 returns = %d"),ret);
  1725 	if(ret == -1)
  1726 		{
  1727 		ERR_PRINTF1(_L("fcntl() with cmd F_SETFD and arg 1 failed"));
  1728 		}
  1729 	ret = fcntl(fd, F_GETFD);
  1730 	INFO_PRINTF2(_L("fcntl() with cmd F_GETFD returns = %d"),ret);
  1731 	if(ret > 0)
  1732 		{
  1733 		ERR_PRINTF1(_L("fcntl() with cmd F_GETFD failed"));
  1734 		}
  1735 	ret = fcntl(fd, F_SETFD, 0);
  1736 	INFO_PRINTF2(_L("fcntl() with cmd F_SETFD and arg 0 returns = %d"),ret);
  1737 	if(ret == -1)
  1738 		{
  1739 		ERR_PRINTF1(_L("fcntl() with cmd F_SETFD and arg 0 failed"));
  1740 		}
  1741 	ret = fcntl(fd, F_SETFD, 2);
  1742 	INFO_PRINTF2(_L("fcntl() with cmd F_SETFD and arg 2 returns = %d"),ret);
  1743 	if(ret == -1)
  1744 		{
  1745 		ERR_PRINTF1(_L("fcntl() with cmd F_SETFD and arg 2 failed"));
  1746 		}
  1747 	ret = fcntl(fd, F_GETLK);
  1748 	INFO_PRINTF2(_L("fcntl() with cmd F_GETLK returns = %d"),ret);
  1749 	if(ret != KErrNotSupported)
  1750 		{
  1751 		ERR_PRINTF1(_L("fcntl() with cmd F_GETLK failed"));
  1752 		}
  1753 	ret = close(fd);
  1754 	INFO_PRINTF2(_L("close returns = %d"),ret);
  1755 	if(ret == -1)
  1756 		{
  1757 		ERR_PRINTF2(_L("Failed to close shared memory object using close() and  errno is %d"),errno);
  1758 		}
  1759 	ret = shm_unlink(filename);
  1760 	INFO_PRINTF2(_L("shm_unlink returns = %d"),ret);
  1761 	if(ret == -1)
  1762 		{
  1763 		ERR_PRINTF2(_L("Failed to remove shared memory using shm_unlink() and  errno is %d"),errno);
  1764 		}
  1765 	return KErrNone;
  1766 	}
  1767 //End of a file