Sponsored Content
Homework and Emergencies Homework & Coursework Questions Script performs the right task but fails against check Post 302927814 by Ezraek on Friday 5th of December 2014 04:54:29 PM
Old 12-05-2014
Tried editing the post to state I fixed the second script by adding $1 to the fileType.sh that I attempt to run. Still failing some other tests though.

fileType.sh does work properly. I had to run that for the first part of the assignment and the checker approved it but this second piece is coming back as failing some other files jay.23, king cobra.dat, and mouse.a b.

The command I ran to test is was ./checkFiles.sh [insert ascii file I have] and it gave me back the appropriate
[insert ascii file path]: Windows ASCII
 

10 More Discussions You Might Find Interesting

1. Debian

./configure is broken - /lib/cpp fails sanity check

Hi, I first wanted to install my NIC drivers but it said: Makefile:62: *** Linux kernel source not found. Stop. So I installed the kernel source: linux-source-2.6.18_2.6.18.dfsg.1-13etch5_all.deb 1) cd /usr/src 2) -xjvf linux-source.2.6.18.extension (forget what it was) 3) ln -s... (12 Replies)
Discussion started by: Virtuality
12 Replies

2. Shell Programming and Scripting

comment and Uncomment single task out of multiple task

I have a file contains TASK gsnmpproxy { CommandLine = $SMCHOME/bin/gsnmpProxy.exe } TASK gsnmpdbgui { CommandLine = $SMCHOME/bin/gsnmpdbgui.exe I would like to comment and than uncomment specific task eg TASK gsnmpproxy Pls suggest how to do in shell script (9 Replies)
Discussion started by: madhusmita
9 Replies

3. Solaris

lib/cpp fails sanity check

I'm trying to install a new library for php but everytime I run configure I got the following error "lib/cpp" fails sanity check. My OS is solaris 10 Any help on how to solve this issue would be highly appreciated (3 Replies)
Discussion started by: dahr
3 Replies

4. What is on Your Mind?

Monzy performs kill -9 at Stanford

Hello people, Have you all seen this? Fow7iUaKrq4 (1 Reply)
Discussion started by: nigelc
1 Replies

5. Shell Programming and Scripting

Script to performs checks

Hi , I need a script which performs below activity I have one file named "testfile" in 9 different directories with same name. I want to perform below action with each testfile of each directory. if ; then mv listfiles listfiles_`date +%b%y` else echo No Such files fi ... (4 Replies)
Discussion started by: sv0081493
4 Replies

6. Shell Programming and Scripting

File check script fails for multiple files

I want to check if any file with testing*.txt exists but my script fails if more than 1 file exists. It works fine for a single file if then echo "TEST21" fi -------------- bash: How do I fix this? Thanks Please use code tags next time for your code and data. (8 Replies)
Discussion started by: sumang24
8 Replies

7. Shell Programming and Scripting

Record length check fails due to '\' character

When I check the length for the records in the file, it does not give me the correct value. I used wc -l command. Example records: abcdefghij abcd\efghij abcdefghi Expected output is: 10 11 9 But the output returned is 10 10 9 Please help me on this issue. (10 Replies)
Discussion started by: Amrutha24
10 Replies

8. Shell Programming and Scripting

Script to check one command and if it fails moves to other command

Input is list of Server's, script is basically to remove old_rootvg, So it should check first command "alt_rootvg_op -X old_rootvg" if it passes move to next server and starts check and if it fails moves to other command "exportvg old_rootvg" for only that particular server. I came up with below,... (6 Replies)
Discussion started by: aix_admin_007
6 Replies

9. Shell Programming and Scripting

Except script fails to check file exists or not in remote node

Dear members, The following expect script connects to remote node and check for the file "authorized_keys" in directory /root/.ssh in remote node. However the result is always found even if the file exist or doesn't exist. expect { "$fname" { send_user "found\n" } Any idea what is... (4 Replies)
Discussion started by: Sudhakar333
4 Replies

10. Shell Programming and Scripting

Script that performs action when receiving an SMS.

My case is the following: -I have a Linux system where I have an smsd installed (SmsTools3) -This system works through a GSM module in which I can send and receive text messages. -Text messages arrive in a certain folder (/ var / spool / sms / incoming) -I need a script that does... (3 Replies)
Discussion started by: dMihawkCL
3 Replies
Manifest(3)						User Contributed Perl Documentation					       Manifest(3)

NAME
Test::Manifest - interact with a t/test_manifest file SYNOPSIS
# in Makefile.PL eval "use Test::Manifest"; # in the file t/test_manifest, list the tests you want # to run DESCRIPTION
"Test::Harness" assumes that you want to run all of the .t files in the t/ directory in ascii-betical order during "make test" unless you say otherwise. This leads to some interesting naming schemes for test files to get them in the desired order. This interesting names ossify when they get into source control, and get even more interesting as more tests show up. "Test::Manifest" overrides the default behaviour by replacing the test_via_harness target in the Makefile. Instead of running at the t/*.t files in ascii-betical order, it looks in the t/test_manifest file to find out which tests you want to run and the order in which you want to run them. It constructs the right value for MakeMaker to do the right thing. In t/test_manifest, simply list the tests that you want to run. Their order in the file is the order in which they run. You can comment lines with a "#", just like in Perl, and "Test::Manifest" will strip leading and trailing whitespace from each line. It also checks that the specified file is actually in the t/ directory. If the file does not exist, it does not put its name in the list of test files to run and it will issue a warning. Optionally, you can add a number after the test name in test_manifest to define sets of tests. See "get_t_files" for more information. Functions run_t_manifest( TEST_VERBOSE, INST_LIB, INST_ARCHLIB, TEST_LEVEL ) Run all of the files in t/test_manifest through Test::Harness:runtests in the order they appear in the file. eval "use Test::Manifest"; get_t_files( [LEVEL] ) In scalar context it returns a single string that you can use directly in WriteMakefile(). In list context it returns a list of the files it found in t/test_manifest. If a t/test_manifest file does not exist, get_t_files() returns nothing. get_t_files() warns you if it can't find t/test_manifest, or if entries start with "t/". It skips blank lines, and strips Perl style comments from the file. Each line in t/test_manifest can have three parts: the test name, the test level (a floating point number), and a comment. By default, the test level is 1. test_name.t 2 #Run this only for level 2 testing Without an argument, get_t_files() returns all the test files it finds. With an argument that is true (so you can't use 0 as a level) and is a number, it skips tests with a level greater than that argument. You can then define sets of tests and choose a set to run. For instance, you might create a set for end users, but also add on a set for deeper testing for developers. Experimentally, you can include a command to grab test names from another file. The command starts with a ";" to distinguish it from a true filename. The filename (currently) is relative to the current working directory, unlike the filenames, which are relative to "t/". The filenames in the included are still relative to "t/". ;include t/file_with_other_test_names.txt Also experimentally, you can stop Test::Manifest from reading filenames with the ";skip" directive. Test::Harness will skip the filenames up to the ";unskip" directive (or end of file) run_this1 ;skip skip_this ;unskip run_this2 To select sets of tests, specify the level in the variable TEST_LEVEL during `make test`. make test # run all tests no matter the level make test TEST_LEVEL=2 # run all tests level 2 and below make_test_manifest() Creates the test_manifest file in the t directory by reading the contents of the t directory. TO DO: specify tests in argument lists. TO DO: specify files to skip. manifest_name() Returns the name of the test manifest file, relative to t/ SOURCE AVAILABILITY
This source is in Github: http://github.com/briandfoy/Test-Manifest/tree/master CREDITS
Matt Vanderpol suggested and supplied a patch for the ;include feature. AUTHOR
brian d foy, "<bdfoy@cpan.org>" COPYRIGHT AND LICENSE
Copyright (c) 2002-2009 brian d foy. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.16.3 2009-07-17 Manifest(3)
All times are GMT -4. The time now is 02:00 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy