with-git / MDS-opensource

0 stars 0 forks source link

[윤미진] 프로젝트 소개서 #2

Open ymjmsghs1 opened 6 years ago

ymjmsghs1 commented 6 years ago

프로젝트명

Stress Application Test

분야 및 한줄 정의

Google에서 개발한 Memory Stress Test c++로 코드가 작성 Test 할 메모리 용량설정이 가능하며 Test Time 설정이 가능

사용언어

c++

주요 feature Compile 설정

sudo apt-get install build-essential
git clone https://github.com/stressapptest/stressapptest.git
cd stressapptest
./configure
make

실행을 위하여 Command

> ./stressapptest -s 20 -M 256 -m 8 -W    # Test 256MB, running 8 "warm copy" threads. Exit after 20 seconds.
> ./stressapptest --help                  # list the available arguments.

Code directory

├── Android.mk
├── COPYING
├── MODULE_LICENSE_APACHE2
├── Makefile
├── Makefile.am
├── Makefile.in
├── NOTICE
├── README.md
├── aclocal.m4
├── config.guess
├── config.log
├── config.status
├── config.sub
├── configure
├── configure.ac
├── depcomp
├── install-sh
├── missing
├── src
│   ├── Makefile
│   ├── Makefile.am
│   ├── Makefile.in
│   ├── adler32memcpy.cc
│   ├── adler32memcpy.h
│   ├── clock.h
│   ├── disk_blocks.cc
│   ├── disk_blocks.h
│   ├── error_diag.cc
│   ├── error_diag.h
│   ├── findmask.c
│   ├── findmask.inc
│   ├── finelock_queue.cc
│   ├── finelock_queue.h
│   ├── logger.cc
│   ├── logger.h
│   ├── main.cc
│   ├── os.cc
│   ├── os.h
│   ├── os_factory.cc
│   ├── pattern.cc
│   ├── pattern.h
│   ├── queue.cc
│   ├── queue.h
│   ├── sat.cc
│   ├── sat.h
│   ├── sat_factory.cc
│   ├── sattypes.h
│   ├── stamp-h1
│   ├── stressapptest_
│   ├── stressapptest_config.h
│   ├── stressapptest_config.h.in
│   ├── stressapptest_config_android.h
│   ├── worker.cc
│   └── worker.h
└── stressapptest.1

Issue를 제기하고 싶은 부분은.. 옵션 부분에 -l 옵션으로 생성자 파일을 만드는 옵션인데.. -l 옵션 뒤 file 이름을 주지 않으면 file 자채가 만들어지지 않는다는 문제가 있어 이를 개선하고자 한다. default로 특정이름을 주어 파일이름 넣게 해준다.